Files
firestormy/server/.notes/notes.go
2020-03-12 13:48:04 -06:00

14 lines
149 B
Go
Executable File

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