In order to be able to read the projectman.json file we may need to create a class that will be responsible to read the configuration file. This class should have a parse method which will return an configuration object that will be passed to the project manager class.
Example of JSONParser class is:
class JSONParser:
def parse(self, filepath):
return #json object
Acceptance Criteria
[ ] A class should be created and we will be able to transform a json file into a configuration object.
/type task
Which area/kind this task is related to?
/label config
Issue Description
In order to be able to read the
projectman.json
file we may need to create a class that will be responsible to read the configuration file. This class should have aparse
method which will return an configuration object that will be passed to the project manager class.Example of
JSONParser
class is:Acceptance Criteria