thepetk / projectman

Github Project Manager is an automation related to Github Projects
Apache License 2.0
3 stars 0 forks source link

Implement JSON Parser class to support json file read #6

Closed thepetk closed 1 year ago

thepetk commented 1 year ago

/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 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

thepetk commented 1 year ago

blocked by #5