Setting port number for API endpoint

This commit is contained in:
TypoMustakes
2023-12-05 18:30:34 +01:00
parent 59fbf22582
commit ff99af99c4

View File

@@ -9,10 +9,7 @@ namespace WD7UVN_HFT_2023241.Client
static void Main(string[] args)
{
CompanyDbContext dbContext = new CompanyDbContext();
RestService rest = new RestService("127.0.0.1", "api");
RestService rest = new RestService("127.0.0.1:5000", "api");
}
}
}