mirror of
https://github.com/gfleury/go-bitbucket-v1.git
synced 2025-04-04 17:00:12 -05:00
16 lines
212 B
Go
16 lines
212 B
Go
package swagger
|
|
|
|
import (
|
|
"fmt"
|
|
"log"
|
|
"net/http"
|
|
)
|
|
|
|
func RunServer(port int) error {
|
|
log.Printf("Mock Server started")
|
|
|
|
router := NewRouter()
|
|
|
|
return http.ListenAndServe(fmt.Sprintf(":%d", port), router)
|
|
}
|