Files
AstralRinth/apps/labrinth/src/util/cors.rs
2024-10-16 14:11:42 -07:00

11 lines
209 B
Rust

use actix_cors::Cors;
pub fn default_cors() -> Cors {
Cors::default()
.allow_any_origin()
.allow_any_header()
.allow_any_method()
.max_age(3600)
.send_wildcard()
}