mirror of
https://github.com/rancher/types.git
synced 2025-06-23 20:27:05 +00:00
20 lines
386 B
Go
20 lines
386 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{}) error {
|
|
return nil
|
|
}
|
|
|
|
func (s StatefulSetSpecMapper) ModifySchema(schema *types.Schema, schemas *types.Schemas) error {
|
|
return nil
|
|
}
|