8 lines
154 B
Go
8 lines
154 B
Go
package handlers
|
|
|
|
// GetFullHostName return string
|
|
func GetFullHostName() string {
|
|
// TODO make it at config
|
|
return "http://" + "localhost" + ":8090"
|
|
}
|