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