initial commit

This commit is contained in:
Odweta
2026-03-19 09:23:13 +01:00
commit 12def174a4
7 changed files with 184 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
package main
type Quote struct {
Id int `json:"id"`
Author string `json:"author"`
Body string `json:"body"`
}