diff options
| author | Jeff Halter <868228+jhalter@users.noreply.github.com> | 2023-03-26 21:10:03 -0700 |
|---|---|---|
| committer | Jeff Halter <868228+jhalter@users.noreply.github.com> | 2023-03-26 21:10:03 -0700 |
| commit | d005ef04cfaa26943e6dd33807d741577ffb232a (patch) | |
| tree | 26b5e4a945889dde0597f615cee31957efb32fa5 /cmd | |
| parent | c3c2f61b2fd90ab5c7fe6ec769644e9d66d40361 (diff) | |
Initial refactor to split client from protocol package
Diffstat (limited to 'cmd')
| -rw-r--r-- | cmd/mobius-hotline-client/main.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/mobius-hotline-client/main.go b/cmd/mobius-hotline-client/main.go index 4bd40c9..33100bf 100644 --- a/cmd/mobius-hotline-client/main.go +++ b/cmd/mobius-hotline-client/main.go @@ -71,7 +71,7 @@ func main() { cancelRoot() }() - client := hotline.NewClient(*configDir, logger) + client := hotline.NewUIClient(*configDir, logger) client.DebugBuf = db client.UI.Start() |