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