mirror of
https://github.com/davidallendj/configurator.git
synced 2025-12-20 03:27:02 -07:00
22 lines
433 B
Go
22 lines
433 B
Go
package main
|
|
|
|
import (
|
|
configurator "github.com/OpenCHAMI/configurator/internal"
|
|
"github.com/OpenCHAMI/configurator/internal/util"
|
|
)
|
|
|
|
type Powerman struct{}
|
|
|
|
func (g *Powerman) GetName() string {
|
|
return "powerman"
|
|
}
|
|
|
|
func (g *Powerman) GetGroups() []string {
|
|
return []string{"powerman"}
|
|
}
|
|
|
|
func (g *Powerman) Generate(config *configurator.Config, opts ...util.Option) ([]byte, error) {
|
|
return nil, nil
|
|
}
|
|
|
|
var Generator Powerman
|