firestormy/server/.notes/notes.go

14 lines
175 B
Go
Executable File

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