()
| 333 | } |
| 334 | |
| 335 | pub fn print_logo() { |
| 336 | println!( |
| 337 | r#" ______ _ __ ____ __ |
| 338 | / ____/___ ____ ___ ____ ___ (_) /_ / __ )____ ____ _____/ /_ |
| 339 | / / / __ \/ __ `__ \/ __ `__ \/ / __/ / __ / __ \/ __ \/ ___/ __/ |
| 340 | / /___/ /_/ / / / / / / / / / / / / /_ / /_/ / /_/ / /_/ (__ ) /_ |
| 341 | \____/\____/_/ /_/ /_/_/ /_/ /_/_/\__/ /_____/\____/\____/____/\__/ |
| 342 | "# |
| 343 | ) |
| 344 | } |
| 345 | |
| 346 | /// Create a JWT for the given module id with expiration |
| 347 | pub fn create_jwt(module_id: &ModuleId, secret: &str) -> eyre::Result<Jwt> { |