refactor: Setup git-remote walking skeleton

pull/6/head
sgoudham 2 years ago
parent 3fb0c0c2b2
commit e11e88b02b
Signed by: hammy
GPG Key ID: 44E818FD5457EEA4

@ -0,0 +1,21 @@
[package]
name = "git-remote"
version = "0.1.0"
edition = "2021"
authors = ["Goudham Suresh <sgoudham@gmail.com>"]
description = ""
license = "MIT"
readme = "README.md"
repository = "https://github.com/sgoudham/git-remote"
exclude = [".github/**"]
[[bin]]
name = "git-remote"
path = "src/bin/git-remote.rs"
[lib]
name = "git_remote"
path = "src/lib.rs"
[dependencies]
clap = { version = '3.1.18' }

@ -0,0 +1,3 @@
fn main() {
todo!()
}

@ -0,0 +1,8 @@
struct GitRemote;
impl GitRemote {
fn is_inside_git_repository() -> bool {
todo!()
}
}
Loading…
Cancel
Save