agent.go 60 B

123456
  1. package network
  2. type Agent interface {
  3. Run()
  4. OnClose()
  5. }