You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
408 B
Go
28 lines
408 B
Go
3 years ago
|
package api
|
||
|
|
||
|
import (
|
||
|
"errors"
|
||
|
)
|
||
|
|
||
|
type ReactorCoordinator interface {
|
||
|
Start() error
|
||
|
Ping() error
|
||
|
}
|
||
|
|
||
|
type reactorCoordinator struct {
|
||
|
id string
|
||
|
}
|
||
|
|
||
2 years ago
|
func (r *reactorCoordinator) Start() error {
|
||
|
return errors.New("todo")
|
||
|
}
|
||
|
|
||
|
func (r *reactorCoordinator) Ping() error {
|
||
|
return errors.New("todo")
|
||
|
}
|
||
|
|
||
3 years ago
|
func StartReactor(id string) ReactorCoordinator {
|
||
|
return &reactorCoordinator{id:id}
|
||
|
}
|
||
|
|