列表標準格式

This commit is contained in:
2023-04-18 15:53:13 +08:00
parent 62f2e55ffa
commit cf199dfc01
8 changed files with 53 additions and 13 deletions

View File

@@ -16,7 +16,7 @@ type Model struct {
// 使用SQLite3初始化數據庫
func init() {
db, err := sql.Open("sqlite3", "model.db")
db, err := sql.Open("sqlite3", "data/sqlite3/model.db")
if err != nil {
log.Fatal(err)
}