mirror of
https://github.com/kubeshark/kubeshark.git
synced 2026-05-18 23:27:55 +00:00
15 lines
165 B
Go
15 lines
165 B
Go
package api
|
|
|
|
import "plugin"
|
|
|
|
type Extension struct {
|
|
Name string
|
|
Path string
|
|
Plug *plugin.Plugin
|
|
Port int
|
|
}
|
|
|
|
type Dissector interface {
|
|
Register(*Extension)
|
|
}
|