4 lines
93 B
Python
4 lines
93 B
Python
class BackendBase(object):
|
|
def check_word(self, word):
|
|
raise NotImplementedError
|