mirror of
https://github.com/usememos/memos.git
synced 2025-02-15 10:50:47 +01:00
15 lines
164 B
Go
15 lines
164 B
Go
package main
|
|
|
|
import (
|
|
_ "github.com/mattn/go-sqlite3"
|
|
|
|
"github.com/usememos/memos/cmd"
|
|
)
|
|
|
|
func main() {
|
|
err := cmd.Execute()
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
}
|