aboutsummaryrefslogtreecommitdiffstats
path: root/todolist/store.go
blob: 518a30ed305c15d36a09596ff250825659c91ca8 (plain)
1
2
3
4
5
6
7
package todolist

type Store interface {
	Initialize()
	Load()
	Save()
}