7 lines
123 B
Python
7 lines
123 B
Python
|
class Project(object):
|
||
|
|
||
|
def __init__(self):
|
||
|
self.root_dir = None
|
||
|
|
||
|
def get_items(self):
|
||
|
pass
|