repository
This commit is contained in:
parent
0afc9d897c
commit
3707f42b77
3 changed files with 7 additions and 2 deletions
3
local.py
3
local.py
|
@ -3,9 +3,10 @@ import datetime
|
||||||
import os
|
import os
|
||||||
|
|
||||||
import msys
|
import msys
|
||||||
|
import repository
|
||||||
|
|
||||||
|
|
||||||
class Local:
|
class Local(repository.Repository):
|
||||||
def __init__(self, args):
|
def __init__(self, args):
|
||||||
self.directory = args[arguments.DIRECTORY]
|
self.directory = args[arguments.DIRECTORY]
|
||||||
self.temporary = args[arguments.TEMPORARY]
|
self.temporary = args[arguments.TEMPORARY]
|
||||||
|
|
|
@ -5,9 +5,10 @@ import arguments
|
||||||
import catalog
|
import catalog
|
||||||
import hypertext
|
import hypertext
|
||||||
import msys
|
import msys
|
||||||
|
import repository
|
||||||
|
|
||||||
|
|
||||||
class Remote:
|
class Remote(repository.Repository):
|
||||||
def __init__(self, args):
|
def __init__(self, args):
|
||||||
self.location = args[arguments.REMOTE]
|
self.location = args[arguments.REMOTE]
|
||||||
self.architectures = args[arguments.ARCHITECTURES]
|
self.architectures = args[arguments.ARCHITECTURES]
|
||||||
|
|
3
repository.py
Normal file
3
repository.py
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
class Repository:
|
||||||
|
def __init__(self):
|
||||||
|
pass
|
Loading…
Reference in a new issue