portal/interfaces/protocol.go

7 lines
96 B
Go

package interfaces
type Protocol interface {
Initialize(portal Portal) error
Start() error
}