feat: init Go module with config and in-memory note store

This commit is contained in:
2026-05-05 11:23:04 +08:00
parent 184d775a7e
commit deffe14e9c
7 changed files with 177 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
package main
import (
"fmt"
"log"
"eino-test/config"
"eino-test/internal/store"
)
func main() {
cfg := config.Load()
noteStore := store.NewMemoryNoteStore()
_ = noteStore
log.Printf("Server starting on port %s (data dir: %s)", cfg.Port, cfg.DataDir)
fmt.Println("Knowledge Assistant ready")
}