Skip to content

Commit

Permalink
refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
XiaoConstantine committed Jul 2, 2024
1 parent 673f752 commit 2deca5f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions main.go → cmd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ Copyright © 2024 NAME HERE <EMAIL ADDRESS>
package main

import (
"mycli/cmd"
"mycli/pkg/commands/root"
"os"
)

func main() {
code := cmd.Run()
code := root.Run()
os.Exit(int(code))
}
2 changes: 1 addition & 1 deletion cmd/root.go → pkg/commands/root/root.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
Copyright © 2024 NAME HERE <EMAIL ADDRESS>
*/
package cmd
package root

import (
"context"
Expand Down

0 comments on commit 2deca5f

Please sign in to comment.