go-again/data/jsondb/jsondb.go

12 lines
168 B
Go
Raw Normal View History

2019-06-21 18:35:08 +00:00
package jsondb
import (
"errors"
again "git.rootprojects.org/root/go-again"
)
func List() ([]again.Schedule, error) {
return nil, errors.New("Not Implemented")
}