bindizr-service 0.1.0-beta.4

Application services for bindizr zone, record, token, and notification workflows
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use super::ZoneService;
use crate::{error::ServiceError, repository::RepositoryService};

impl ZoneService {
    pub async fn update_catalog_serial_for_signature(
        name: &str,
        signature: &str,
        base_serial: i32,
    ) -> Result<i32, ServiceError> {
        RepositoryService::update_catalog_serial_for_signature(name, signature, base_serial).await
    }
}