1
0
mirror of https://github.com/rancher/types.git synced 2025-06-25 21:21:32 +00:00
types/mapper/statefulset_spec.go
Darren Shepherd e76df53327 Move mappers
2017-11-29 14:37:09 -07:00

19 lines
368 B
Go

package mapper
import (
"github.com/rancher/norman/types"
)
type StatefulSetSpecMapper struct {
}
func (s StatefulSetSpecMapper) FromInternal(data map[string]interface{}) {
}
func (s StatefulSetSpecMapper) ToInternal(data map[string]interface{}) {
}
func (s StatefulSetSpecMapper) ModifySchema(schema *types.Schema, schemas *types.Schemas) error {
return nil
}