1
0
mirror of https://github.com/actix/examples synced 2024-11-23 14:31:07 +01:00
examples/cors/backend/README.md
2024-08-07 02:04:57 +01:00

488 B

actix_cors::Cors

Running Server

cd cors/backend
cargo run
# starting HTTP server at http://localhost:8080

web client

  • http://localhost:8080/user/info
    // payload structure
    {
      "username": "username",
      "email": "email",
      "password": "password",
      "confirm_password": "password"
    }
    

Others