hetzner_dns/src/main.rs
bread e1835d0f2c
Some checks are pending
Build legacy Nix package on Ubuntu / build (push) Waiting to run
add models and api client
2025-04-19 18:53:24 +02:00

12 lines
206 B
Rust

#![allow(dead_code, unused)]
use serde::{Deserialize, Serialize};
use crate::models::*;
use std::error::Error;
mod models;
mod client;
#[tokio::main(flavor = "current_thread")]
async fn main() -> () {
}