mirror of
https://github.com/YunoHost/moulinette.git
synced 2024-09-03 20:06:31 +02:00
8 lines
169 B
Python
8 lines
169 B
Python
|
from twisted.web.server import Site
|
||
|
from .resource import APIResource
|
||
|
|
||
|
|
||
|
class RESTfulService(Site):
|
||
|
def __init__(self, port=8080):
|
||
|
self.root = APIResource()
|