mirror of https://github.com/sgoudham/git-view.git
refactor: Setup git-remote walking skeleton
parent
3fb0c0c2b2
commit
e11e88b02b
@ -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…
Reference in New Issue