Some checks are pending
Build legacy Nix package on Ubuntu / build (push) Waiting to run
12 lines
206 B
Rust
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() -> () {
|
|
}
|