15 lines
209 B
Go
15 lines
209 B
Go
package main
|
|
|
|
import (
|
|
"go-nkode/core/api"
|
|
"net/http"
|
|
"testing"
|
|
)
|
|
|
|
func TestMain(t *testing.T) {
|
|
base := "http://localhost:8080"
|
|
|
|
resp, err := http.Post(base+api.CreateNewCustomer, "application/json")
|
|
|
|
}
|