gau1991
10 years ago
1 changed files with 22 additions and 0 deletions
@ -0,0 +1,22 @@ |
|||||
|
"""EasyEngine package installation using apt-get module.""" |
||||
|
|
||||
|
Class EEAptGet(): |
||||
|
"""Generice apt-get intialisation""" |
||||
|
def __init__(): |
||||
|
# TODO Common method of apt-get module |
||||
|
pass |
||||
|
|
||||
|
"""Installation of packages""" |
||||
|
def install(): |
||||
|
# TODO Method to install packages |
||||
|
pass |
||||
|
|
||||
|
"""Removal of packages""" |
||||
|
def remove(): |
||||
|
# TODO Method to remove packages |
||||
|
pass |
||||
|
|
||||
|
"""Purging of packages""" |
||||
|
def purge(): |
||||
|
# TODO Method to purge packages |
||||
|
pass |
Loading…
Reference in new issue