Files
firestormy/server/.notes/notes.go
2026-02-20 15:03:21 -07:00

14 lines
164 B
Go
Executable File

package notes
import "gitea.bel.blue/local/notes-server/config"
type Notes struct {
root string
}
func New() *Notes {
return &Notes{
root: config.Root,
}
}