timer_task.go 85 B

1234567
  1. // the timer task interface.
  2. package server
  3. type TimerTask interface {
  4. DoTask()
  5. }