12 lines
168 B
Go
12 lines
168 B
Go
|
package jsondb
|
||
|
|
||
|
import (
|
||
|
"errors"
|
||
|
|
||
|
again "git.rootprojects.org/root/go-again"
|
||
|
)
|
||
|
|
||
|
func List() ([]again.Schedule, error) {
|
||
|
return nil, errors.New("Not Implemented")
|
||
|
}
|