notes-server/notes/notes.go

16 lines
185 B
Go
Executable File

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,
}
}