mirror of
https://github.com/akyaiy/GoSally-mvp.git
synced 2026-01-03 08:52:24 +00:00
12 lines
170 B
Go
12 lines
170 B
Go
// Package main used only for calling cmd.Execute()
|
|
package main
|
|
|
|
import (
|
|
"github.com/akyaiy/GoSally-mvp/cmd"
|
|
_ "modernc.org/sqlite"
|
|
)
|
|
|
|
func main() {
|
|
cmd.Execute()
|
|
}
|