mirror of
https://github.com/usememos/memos.git
synced 2024-11-14 10:44:50 +08:00
15 lines
182 B
Go
15 lines
182 B
Go
package main
|
|
|
|
import (
|
|
"os"
|
|
|
|
_ "github.com/mattn/go-sqlite3"
|
|
|
|
"github.com/usememos/memos/bin/server/cmd"
|
|
)
|
|
|
|
func main() {
|
|
if err := cmd.Execute(); err != nil {
|
|
os.Exit(1)
|
|
}
|
|
}
|