Files
go-nkode/main_test.go
2024-08-21 08:20:51 -05:00

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")
}