14 lines
175 B
Go
14 lines
175 B
Go
package config
|
|
|
|
import "fmt"
|
|
|
|
const PORT = 8080
|
|
|
|
const APP_NAME = "textsender-api"
|
|
|
|
func PortString() string {
|
|
portMessage := fmt.Sprintf(":%d", PORT)
|
|
|
|
return portMessage
|
|
}
|