22 lines
222 B
Python
22 lines
222 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import absolute_import
|
|
|
|
|
|
class AD():
|
|
def __init__(self):
|
|
pass
|
|
|
|
def get(self):
|
|
pass
|
|
|
|
def post(self):
|
|
pass
|
|
|
|
|
|
def put(self):
|
|
pass
|
|
|
|
|
|
def delete(self):
|
|
pass
|