| 9 | type EventType = int |
| 10 | |
| 11 | type Component interface { |
| 12 | GetID() ComponentID |
| 13 | GetType() ComponentType |
| 14 | Start() |
| 15 | Close() |
| 16 | } |
| 17 | |
| 18 | func GenComponentID() ComponentID { |
| 19 | return agent.GenAgentID() |
no outgoing calls
no test coverage detected
searching dependent graphs…