mirror of
https://github.com/rancher/types.git
synced 2025-06-25 13:11:33 +00:00
19 lines
368 B
Go
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
|
||
|
}
|