package share // ******************************************************************************** // WARNING: DO NOT MODIFY THIS FILE. IT WILL BE REPLACED BY THE APPLICATION CODE. // ********************************************************************************* // Pack the yao app package type Pack struct{} // Decode the package decode method func (pkg *Pack) Decode(data []byte) ([]byte, error) { return data, nil } // Encode the package encode method func (pkg *Pack) Encode(data []byte) ([]byte, error) { return data, nil }