8 lines
115 B
Go
8 lines
115 B
Go
|
package scaninfo
|
||
|
|
||
|
type ServiceScanInfo interface {
|
||
|
SetHistory(history string)
|
||
|
GetPort() string
|
||
|
GetIP() string
|
||
|
}
|