10 lines
156 B
Python
10 lines
156 B
Python
from .BaseWebPage import BaseWebPage
|
|
|
|
class HomeWebPage(BaseWebPage):
|
|
|
|
def __init__(self):
|
|
BaseWebPage.__init__(self)
|
|
|
|
self.create_from_json({
|
|
|
|
}) |