nicholasday

Results 1 comments of nicholasday

Just for future reference, here is the fairing I wrote for easy CORS: ```rust use rocket::{Request, Response}; use rocket::fairing::{Fairing, Info, Kind}; use rocket::http::{Header, ContentType, Method}; use std::io::Cursor; pub struct CORS();...