Adding mock server for simple projects

This commit is contained in:
gfleury
2020-03-18 15:20:48 -03:00
parent aabce9f497
commit 14d4b869a5
13 changed files with 7296 additions and 5 deletions

View File

@ -0,0 +1,20 @@
/*
* Bitbucket Server API
*
* Bitbucket Server API (former stash).
*
* API version: 1.0.0
* Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
*/
package main
import (
"log"
sw "github.com/gfleury/go-bitbucket-v1/test/bb-mock-server/go"
)
func main() {
log.Fatal(sw.RunServer(7991))
}