Files
go_oxspeak_server/main.go
2025-11-02 01:25:30 +01:00

16 lines
356 B
Go

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
}
}