Skip to content

Commit 1467463

Browse files
committed
feat: libvcs.cmd
1 parent dee9d2d commit 1467463

3 files changed

Lines changed: 18 additions & 0 deletions

File tree

libvcs/cmd/git.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import pathlib
2+
3+
4+
class Git:
5+
def __init__(self, dir: pathlib.Path):
6+
self.dir: pathlib.Path = dir

libvcs/cmd/hg.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import pathlib
2+
3+
4+
class Hg:
5+
def __init__(self, dir: pathlib.Path):
6+
self.dir: pathlib.Path = dir

libvcs/cmd/svn.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import pathlib
2+
3+
4+
class Svn:
5+
def __init__(self, dir: pathlib.Path):
6+
self.dir: pathlib.Path = dir

0 commit comments

Comments
 (0)