Created
September 15, 2022 14:09
-
-
Save tanveerprottoy/a98cba25feb0eeb14e7e0e8b3d26c49e to your computer and use it in GitHub Desktop.
main.go
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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