interface.go 47 B

12345
  1. package task
  2. type ITask interface {
  3. Exec()
  4. }