Skip to content

Instantly share code, notes, and snippets.

@tanveerprottoy
Created September 15, 2022 14:09
Show Gist options
  • Save tanveerprottoy/a98cba25feb0eeb14e7e0e8b3d26c49e to your computer and use it in GitHub Desktop.
Save tanveerprottoy/a98cba25feb0eeb14e7e0e8b3d26c49e to your computer and use it in GitHub Desktop.
main.go
package main
import "txp/restapistarter/app"
func main() {
app := new(app.App)
app.InitComponents()
app.Run()
}
// Multiply just to check unit test
func Multiply() int {
return 25 * 4
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment