Skip to content

Commit

Permalink
initial stubs for objects
Browse files Browse the repository at this point in the history
  • Loading branch information
tony committed Oct 8, 2016
1 parent f348011 commit 2318fc4
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions patches/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,26 @@
"""

class Source(object):

def get_results(self):
pass



class Entry(object):

raw_data = None


class Patch(object):

def __str__(self):
return self._raw_data


class Communique(object):

def __str__(self):

return self._raw_data

0 comments on commit 2318fc4

Please sign in to comment.