package component // Component 组件接口 type Component interface { // OnInit 初始化组件时调用. OnInit() // OnShutdown 停止组件时调用. OnShutdown() }