S-YOU 5 роки тому
батько
коміт
0ac9936fae

+ 2 - 2
frameworks/V/pico.v/benchmark_config.json

@@ -3,8 +3,8 @@
   "tests": [
     {
       "default": {
-        "json_url": "/j",
-        "plaintext_url": "/t",
+        "json_url": "/json",
+        "plaintext_url": "/plaintext",
         "port": 8088,
         "approach": "Realistic",
         "classification": "Micro",

+ 2 - 2
frameworks/V/pico.v/main.v

@@ -21,10 +21,10 @@ fn hello_response() string {
 
 pub fn callback(req hp.Request, res mut hp.Response) {
 	if hp.cmpn(req.method, 'GET ', 4) {
-		if hp.cmp(req.path, '/t') {
+		if hp.cmpn(req.path, '/plaintext', 10) {
 			res.http_ok().header_server().header_date().plain().body(hello_response())
 		}
-		else if hp.cmp(req.path, '/j') {
+		else if hp.cmpn(req.path, '/json', 5) {
 			res.http_ok().header_server().header_date().json().body(json_response())
 		}
 		else {