add cron setting
continuous-integration/drone/push Build is passing

This commit is contained in:
Jay
2021-07-02 17:00:18 +08:00
parent a487ae9019
commit 9b680530d5
6 changed files with 32 additions and 4 deletions
+1 -1
View File
@@ -22,7 +22,7 @@ func (s Set) Size() int {
func (s Set) Keys() []interface{} {
keys := make([]interface{}, 0)
for k, _ := range s {
for k := range s {
keys = append(keys, k)
}