Filling out docs some more

This commit is contained in:
Caleb Gardner
2024-05-18 22:07:24 -05:00
parent 75f8356893
commit f7bbdaa4b3
4 changed files with 91 additions and 17 deletions
+12 -1
View File
@@ -1,4 +1,15 @@
package darkstorm
type CrashReport struct{}
type IndividualCrash struct {
Platform string
Error string
Stack string
Count int
}
type CrashReport struct {
ID string
Error string
FirstLine string
Individual []IndividualCrash
}