diff options
| author | Christine Dodrill <me@christine.website> | 2019-06-28 19:34:17 -0400 |
|---|---|---|
| committer | Christine Dodrill <me@christine.website> | 2019-06-28 19:34:17 -0400 |
| commit | 5c728f1ea67566aea7f0c85130d039316e8334c3 (patch) | |
| tree | acee398157411258f062fbe8f9826f959647c08a /cmd/within.website | |
| parent | c54cd92a91d19cc3ce0981b5d0d3c1ee747aa482 (diff) | |
| download | x-5c728f1ea67566aea7f0c85130d039316e8334c3.tar.xz x-5c728f1ea67566aea7f0c85130d039316e8334c3.zip | |
build.go: use internal.HandleStartup()
Diffstat (limited to 'cmd/within.website')
| -rw-r--r-- | cmd/within.website/build.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cmd/within.website/build.go b/cmd/within.website/build.go index ba46009..c27104d 100644 --- a/cmd/within.website/build.go +++ b/cmd/within.website/build.go @@ -11,6 +11,7 @@ import ( "os" "github.com/shurcooL/vfsgen" + "within.website/x/internal" "within.website/x/internal/kahless" "within.website/x/internal/minipaas" "within.website/x/internal/yeet" @@ -22,7 +23,7 @@ var ( ) func main() { - flag.Parse() + internal.HandleStartup() ctx, cancel := context.WithCancel(context.Background()) defer cancel() |
