it's almost working

Signed-off-by: Jens Langhammer <jens@goauthentik.io>
This commit is contained in:
Jens Langhammer
2025-05-15 02:27:32 +02:00
parent 3c228bf5c3
commit 06e76a5b37
5 changed files with 38 additions and 22 deletions

View File

@ -0,0 +1,11 @@
package protocol
type EmptyPayload struct {
}
func (ep EmptyPayload) Decode(raw []byte) error {
return nil
}
func (ep EmptyPayload) Encode() ([]byte, error) {
return []byte{}, nil
}