Skip to content
Snippets Groups Projects
Select Git revision
  • 5c660b605fa7fdadc2197c8cd9da53bf50a655f8
  • main default protected
2 results

server.ts

Blame
  • server.ts 143 B
    import App from './app'
    
    let app
    
    app = new App(parseInt(process.argv[2]))
    
    
    console.log(`metrics-example running on Port ${process.argv[2]}`)