portal/interfaces/protocol.go

7 lines
96 B
Go
Raw Normal View History

2024-01-12 00:11:53 +00:00
package interfaces
type Protocol interface {
Initialize(portal Portal) error
Start() error
2024-01-12 00:11:53 +00:00
}