refluxer 0.1.0

Rust API wrapper for Fluxer
Documentation
use crate::snowflake_id;
pub use crate::{FLUXER_EPOCH_MS, Snowflake};

snowflake_id!(
    /// Unique identifier for a user.
    pub UserId
);
snowflake_id!(
    /// Unique identifier for a guild.
    pub GuildId
);
snowflake_id!(
    /// Unique identifier for a channel.
    pub ChannelId
);
snowflake_id!(
    /// Unique identifier for a message.
    pub MessageId
);
snowflake_id!(
    /// Unique identifier for a role.
    pub RoleId
);
snowflake_id!(
    /// Unique identifier for a webhook.
    pub WebhookId
);
snowflake_id!(
    /// Unique identifier for an attachment.
    pub AttachmentId
);
snowflake_id!(
    /// Unique identifier for an emoji.
    pub EmojiId
);