1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
//! Module containing utility functions and structs.
pub mod uri;

/// The [scryfall](https://scryfall.com/docs/api) endpoint.
pub const API: &str = "https://api.scryfall.com";
/// The [cards](https://scryfall.com/docs/api/cards) endpoint.
pub const API_CARDS: &str = "/cards";
/// The [sets](https://scryfall.com/docs/api/sets) endpoint.
pub const API_SETS: &str = "/sets";
/// The [rulings](https://scryfall.com/docs/api/sets) endpoint.
pub const API_RULING: &str = "/rulings";

/// A type alias for a UUID.
pub type UUID = String;