7 lines
129 B
Python
7 lines
129 B
Python
class Project(object):
|
|
|
|
def __init__(self, path):
|
|
self.root_dir = path
|
|
|
|
def get_items(self):
|
|
pass |