mirror of
https://github.com/NotAShelf/goblin.git
synced 2024-11-01 11:01:17 +00:00
11 lines
101 B
Go
11 lines
101 B
Go
// entrypoint for the program
|
|
package main
|
|
|
|
import (
|
|
"goblin/cmd"
|
|
)
|
|
|
|
func main() {
|
|
cmd.Execute()
|
|
}
|