2025-11-11 06:30:02 +01:00

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")
}