1
0
mirror of https://github.com/rancher/types.git synced 2025-06-24 20:51:33 +00:00
types/mapper/statefulset_spec.go

20 lines
386 B
Go
Raw Normal View History

2017-11-15 04:45:08 +00:00
package mapper
import (
"github.com/rancher/norman/types"
)
type StatefulSetSpecMapper struct {
}
func (s StatefulSetSpecMapper) FromInternal(data map[string]interface{}) {
}
2018-06-05 04:44:54 +00:00
func (s StatefulSetSpecMapper) ToInternal(data map[string]interface{}) error {
return nil
2017-11-15 04:45:08 +00:00
}
func (s StatefulSetSpecMapper) ModifySchema(schema *types.Schema, schemas *types.Schemas) error {
return nil
}