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,16 @@
package bus
import (
"fmt"
"testing"
)
func TestQuerySchedule(t *testing.T) {
qo, err := parse( "K74 天瑞" )
if err != nil {
t.Error( err )
}
fmt.Printf( "%+v", qo )
}