Start githubctl module.

This commit is contained in:
Tom Alexander 2022-04-10 17:15:57 -04:00
parent b22580bee9
commit 857c237319
Signed by: talexander
GPG Key ID: D3A179C9A53C0EDE
3 changed files with 6 additions and 0 deletions

View File

@ -0,0 +1 @@
pub struct GithubCtl {}

3
src/githubctl/mod.rs Normal file
View File

@ -0,0 +1,3 @@
mod githubctl;
pub use githubctl::GithubCtl;

View File

@ -1,3 +1,5 @@
mod githubctl;
#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
println!("Hello, world!");