Basic online wondertrade system

This commit is contained in:
chardub
2022-12-26 17:07:24 -05:00
parent 6d285827cb
commit ada389d18d
21 changed files with 80 additions and 3 deletions

View File

@@ -0,0 +1,8 @@
def test_http_get
url = "http://localhost:8080"
response = HTTPLite.get(url)
if response[:status] == 200
p response[:body]
end
end