mirror of
https://github.com/kubeshark/kubeshark.git
synced 2026-05-18 15:17:10 +00:00
17 lines
219 B
Go
17 lines
219 B
Go
package api
|
|
|
|
import "plugin"
|
|
|
|
type Extension struct {
|
|
Name string
|
|
Path string
|
|
Plug *plugin.Plugin
|
|
Ports []string
|
|
Dissector Dissector
|
|
}
|
|
|
|
type Dissector interface {
|
|
Register(*Extension)
|
|
Ping()
|
|
}
|