renamed data file to structs, will be used to define composed types

This commit is contained in:
Valmo Trindade
2024-07-21 02:05:33 -03:00
parent ddb0dafcec
commit 05d2495c0a

View File

@@ -0,0 +1,6 @@
package main
type Payload struct {
Content string `json:"content"`
Username string `json:"username,omitempty"` // Optional field
}