haoheliu
first commit and add large model
bdab1da
raw
history blame
No virus
180 Bytes
from .models import Generator
class AttrDict(dict):
def __init__(self, *args, **kwargs):
super(AttrDict, self).__init__(*args, **kwargs)
self.__dict__ = self