Sign in
apache
/
beam-starter-typescript
/
refs/heads/main
/
.
/
src
/
main.ts
blob: cb437a19d39ff3a89871ba99879d856352a025e3 [
file
]
const
yargs
=
require
(
"yargs"
);
import
*
as
app
from
"./app"
;
async
function
main
(
argv
)
{
await app
.
runPipeline
(
argv
);
}
main
(
yargs
.
argv
)
.
catch
((
e
)
=>
console
.
error
(
e
))
.
finally
(()
=>
process
.
exit
());