initial commit

This commit is contained in:
2022-02-04 20:23:04 +01:00
parent 0c44f26522
commit 2b614f6bd3
21 changed files with 1236 additions and 1 deletions

12
pkg/setup_test.go Normal file
View File

@@ -0,0 +1,12 @@
package gocron_server_test
import "fmt"
type Counter struct {
Current int
}
func (c *Counter) Increment() (string, error) {
c.Current += 1
return fmt.Sprint(c.Current), nil
}