9 lines
150 B
Python
9 lines
150 B
Python
__author__ = 'rafael'
|
|
|
|
|
|
class Dummy(object):
|
|
def __init__(self, **kwargs):
|
|
self.args = kwargs
|
|
|
|
def create(args):
|
|
return Dummy(**args)
|