14 lines
296 B
Python
14 lines
296 B
Python
![]() |
#!/usr/bin/env python
|
||
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
from web.service.training_sensitive_word_service import TrainingSensitiveWordService
|
||
|
|
||
|
|
||
|
class BaseHandler:
|
||
|
"""
|
||
|
handler层的基类
|
||
|
"""
|
||
|
|
||
|
def __init__(self):
|
||
|
self.training_sensitive_word_service = TrainingSensitiveWordService()
|