diff options
| author | Jeff Halter <868228+jhalter@users.noreply.github.com> | 2021-07-28 18:21:52 -0700 |
|---|---|---|
| committer | Jeff Halter <868228+jhalter@users.noreply.github.com> | 2021-07-28 14:21:52 -0700 |
| commit | 22c599abc18895f73e96095f35b71cf3357d41b4 (patch) | |
| tree | 482ef57d386c955692ea43c43e4655b3c3763499 /client/main.go | |
| parent | 71c56068adca18f76ebee86355f000a3e51d3127 (diff) | |
Move code to hotline dir
Diffstat (limited to 'client/main.go')
| -rw-r--r-- | client/main.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/client/main.go b/client/main.go index 6008cad..3ce4c7e 100644 --- a/client/main.go +++ b/client/main.go @@ -4,7 +4,7 @@ import ( "context" "flag" "fmt" - hotline "github.com/jhalter/mobius" + "github.com/jhalter/mobius/hotline" "github.com/rivo/tview" "go.uber.org/zap" "go.uber.org/zap/zapcore" @@ -14,6 +14,7 @@ import ( "syscall" ) + func main() { _, cancelRoot := context.WithCancel(context.Background()) |