Generalize cache get with expire param

This commit is contained in:
2022-09-14 17:12:48 +08:00
parent 7e327abbae
commit afb73b70ff
10 changed files with 132 additions and 112 deletions

View File

@@ -0,0 +1,12 @@
package bus
import (
"testing"
)
func TestGetSchedule(t *testing.T) {
_, err := getSchedule( "en", "K66" )
if err != nil {
t.Error( err )
}
}