bindizr-core 0.1.0-beta.4

Core models, configuration, DNS record types, and logging utilities for bindizr
Documentation
1
2
3
4
5
6
7
8
9
10
use chrono::{DateTime, Utc};
use sqlx::FromRow;

#[derive(Debug, Clone, PartialEq, Eq, FromRow)]
pub struct CatalogZoneState {
    pub name: String,
    pub signature: String,
    pub serial: i32,
    pub updated_at: DateTime<Utc>,
}