Implement interface in submit

This commit is contained in:
PhatPhuckDave
2024-07-22 22:38:46 +02:00
parent 785c742ee2
commit 9b86dfc2ef

View File

@@ -57,3 +57,14 @@ type (
SUBMIT_MULTI struct{}
SUBMIT_MULTI_RESP struct{}
)
func (p *SUBMIT_SM) Encode() []byte {
return []byte{}
}
func (p *SUBMIT_SM) EncodeInto(buf *[]byte) {
}
func (p *SUBMIT_SM) Decode(data []byte) {
}
func (p *SUBMIT_SM) Size() uint32 {
return 0
}