Skip to content

Commit

Permalink
CMD: Move watch file into its own cli package.
Browse files Browse the repository at this point in the history
  • Loading branch information
Cian911 committed Dec 31, 2021
1 parent 9ce7412 commit 7f5d8b4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmd/watch.go → cli/watch.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package main
package cli

import (
"fmt"
Expand Down
6 changes: 5 additions & 1 deletion cmd/main.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
package main

import (
"github.com/cian911/switchboard/cli"
)

func main() {
Watch()
cli.Watch()
}

0 comments on commit 7f5d8b4

Please sign in to comment.