We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d5d705 commit 1920e08Copy full SHA for 1920e08
api/main.go
@@ -12,7 +12,7 @@ import (
12
// Version is injected at runtime
13
var Version string
14
15
-// @title HTTP SMS API
+// @title httpSMS API Reference
16
// @version 1.0
17
// @description API to send SMS messages using android [SmsManager](https://developer.android.com/reference/android/telephony/SmsManager) via HTTP
18
//
@@ -41,6 +41,6 @@ func main() {
41
docs.SwaggerInfo.Version = Version
42
}
43
44
- container := di.NewContainer("http-sms", Version)
+ container := di.NewContainer(os.Getenv("GCP_PROJECT_ID"), Version)
45
container.Logger().Info(container.App().Listen(fmt.Sprintf("%s:%s", os.Getenv("APP_HOST"), os.Getenv("APP_PORT"))).Error())
46
0 commit comments