11 lines
201 B
Go
11 lines
201 B
Go
package server
|
|
|
|
import "fmt"
|
|
|
|
// this function schedules the tasks and will be called periodically, see server.Start()
|
|
func (s *Server) interval() {
|
|
|
|
fmt.Println("taskengine was called")
|
|
|
|
}
|