2021-10-16 23:25:34 +08:00
|
|
|
package middlemsg
|
2021-10-09 21:55:16 +08:00
|
|
|
|
2021-10-10 22:27:37 +08:00
|
|
|
import (
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2021-10-19 16:38:07 +08:00
|
|
|
PulginsInfosName = "plugins-infos-context"
|
2021-10-10 22:27:37 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
type PulginsInfo struct {
|
|
|
|
Version string
|
|
|
|
Desc string
|
|
|
|
Name string
|
|
|
|
Statux string
|
|
|
|
Time time.Duration
|
|
|
|
}
|
2021-10-19 16:38:07 +08:00
|
|
|
|
|
|
|
type PulginsInfos struct {
|
|
|
|
Infos []*PulginsInfo
|
|
|
|
}
|