actix-web で HelloWorld

下記ページを参考にして、 actix-web で Hello World を作った。 github.com 今後はDBに接続して、下記を参考にしつつ最も近い値を返すように変更していく。 how-to-make-stock-trading-system.dogwood008.com メインのプログラム // main.rs use actix_web::{get, web, App, HttpServer, Responder}; #[get("/{code}/{dat…