You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package component
|
|
|
|
// Component 组件接口
|
|
type Component interface {
|
|
// OnInit 初始化组件时调用.
|
|
OnInit()
|
|
// OnShutdown 停止组件时调用.
|
|
OnShutdown()
|
|
}
|