mirror of
https://github.com/kemko/nomad.git
synced 2026-01-06 02:15:43 +03:00
20 lines
249 B
Go
20 lines
249 B
Go
package agent
|
|
|
|
import "io"
|
|
|
|
type Agent struct {
|
|
}
|
|
|
|
func NewAgent(config *Config, logOutput io.Writer) (*Agent, error) {
|
|
a := &Agent{}
|
|
return a, nil
|
|
}
|
|
|
|
func (a *Agent) Leave() error {
|
|
return nil
|
|
}
|
|
|
|
func (a *Agent) Shutdown() error {
|
|
return nil
|
|
}
|