Start githubctl module.
This commit is contained in:
parent
b22580bee9
commit
857c237319
1
src/githubctl/githubctl.rs
Normal file
1
src/githubctl/githubctl.rs
Normal file
@ -0,0 +1 @@
|
||||
pub struct GithubCtl {}
|
3
src/githubctl/mod.rs
Normal file
3
src/githubctl/mod.rs
Normal file
@ -0,0 +1,3 @@
|
||||
mod githubctl;
|
||||
|
||||
pub use githubctl::GithubCtl;
|
@ -1,3 +1,5 @@
|
||||
mod githubctl;
|
||||
|
||||
#[tokio::main]
|
||||
async fn main() -> Result<(), Box<dyn std::error::Error>> {
|
||||
println!("Hello, world!");
|
||||
|
Loading…
Reference in New Issue
Block a user