mirror of
https://github.com/aykhans/slash-e.git
synced 2025-04-16 04:13:12 +00:00
15 lines
163 B
Go
15 lines
163 B
Go
package main
|
|
|
|
import (
|
|
_ "github.com/mattn/go-sqlite3"
|
|
|
|
"github.com/boojack/corgi/cmd"
|
|
)
|
|
|
|
func main() {
|
|
err := cmd.Execute()
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
}
|