mirror of
https://github.com/go-shiori/shiori.git
synced 2024-11-10 17:36:02 +08:00
13 lines
216 B
Go
13 lines
216 B
Go
package main
|
|
|
|
import (
|
|
"github.com/go-shiori/shiori/internal/cmd"
|
|
"github.com/sirupsen/logrus"
|
|
)
|
|
|
|
func main() {
|
|
shioriCmd := cmd.ShioriCmd()
|
|
if err := shioriCmd.Execute(); err != nil {
|
|
logrus.Fatalln(err)
|
|
}
|
|
}
|