mirror of
https://github.com/eolinker/apinto
synced 2026-04-22 16:07:04 +08:00
15 lines
291 B
Go
15 lines
291 B
Go
package output
|
|
|
|
import "github.com/eolinker/eosc"
|
|
|
|
const OutputSkill = "github.com/eolinker/apinto/http-entry.http-entry.IOutput"
|
|
|
|
type IEntryOutput interface {
|
|
Output(entry eosc.IEntry) error
|
|
}
|
|
|
|
//CheckSkill 检查能力
|
|
func CheckSkill(skill string) bool {
|
|
return skill == OutputSkill
|
|
}
|