mirror of
https://github.com/aykhans/slash-e.git
synced 2025-04-17 20:55:28 +00:00
15 lines
157 B
Go
15 lines
157 B
Go
package main
|
|
|
|
import (
|
|
_ "modernc.org/sqlite"
|
|
|
|
"github.com/boojack/shortify/cmd"
|
|
)
|
|
|
|
func main() {
|
|
err := cmd.Execute()
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
}
|