aximate 0.1.4

Aximate core data structures and utilities
Documentation
1
2
3
4
5
6
7
8
9
10
use serde::{Deserialize, Serialize};
use std::clone::Clone;
pub mod addr;

#[derive(Serialize, Deserialize, Clone, Debug)]
pub struct Account {
  pub discord_id: String,
  pub name: String,
  pub ronin: String,
}