Files
firestormy/server/.notes/notes.go
Bel LaPointe f51a94eee1 gitea
2025-05-24 14:00:21 -06:00

14 lines
176 B
Go
Executable File

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