Mostly finish docs

Actually start to parse things
This commit is contained in:
Caleb Gardner
2024-05-19 06:47:41 -05:00
parent f7bbdaa4b3
commit 4244b6985a
11 changed files with 270 additions and 20 deletions
+11
View File
@@ -0,0 +1,11 @@
package darkstorm
type Log struct {
ID string
Platform string
Date int
}
func (l Log) GetID() string {
return l.ID
}