10 lines
197 B
Python
10 lines
197 B
Python
|
#!/usr/bin/env python3
|
||
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
print("Handler text/match-regex loaded!")
|
||
|
|
||
|
|
||
|
class ExerciseHandler(object):
|
||
|
def __init__(self):
|
||
|
print("ExerciseHandler text/match-regex")
|