Getting basics down

This commit is contained in:
Caleb Gardner
2024-05-18 10:00:37 -05:00
parent b6bc9240d9
commit 75f8356893
8 changed files with 98 additions and 1 deletions
+9 -1
View File
@@ -1,3 +1,11 @@
package darkstorm
type App interface{}
type App interface {
//TODO
}
type CrashApp interface {
App
AddCrash(CrashReport)
// TODO
}