mirror of
https://github.com/usememos/memos.git
synced 2024-11-10 17:02:21 +08:00
1517688076
* chore: update code structure * chore: update
14 lines
164 B
Go
14 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)
|
|
}
|
|
}
|