This commit is contained in:
2025-11-02 01:25:30 +01:00
commit ed18be9fbd
17 changed files with 598 additions and 0 deletions

15
main.go Normal file
View File

@@ -0,0 +1,15 @@
package main
import app "go_oxspeak_server/app"
//TIP <p>To run your code, right-click the code and select <b>Run</b>.</p> <p>Alternatively, click
// the <icon src="AllIcons.Actions.Execute"/> icon in the gutter and select the <b>Run</b> menu item from here.</p>
func main() {
process := app.App{}
err := process.Run()
if err != nil {
return
}
}