12 lines
179 B
Python
12 lines
179 B
Python
|
|
from .base import BaseReporter
|
||
|
|
|
||
|
|
class PcReporter(BaseReporter):
|
||
|
|
def __init__(self):
|
||
|
|
pass
|
||
|
|
|
||
|
|
def run(self):
|
||
|
|
"""实现 PC 端的举报逻辑"""
|
||
|
|
pass
|
||
|
|
|
||
|
|
|