mirror of
https://github.com/github/codeql.git
synced 2025-12-18 01:33:15 +01:00
15 lines
165 B
Python
15 lines
165 B
Python
|
|
from zope.interface import Interface, implementer
|
|
|
|
class IThing(Interface):
|
|
pass
|
|
|
|
|
|
@implementer(IThing)
|
|
class Thing(object):
|
|
pass
|
|
|
|
implementer
|
|
IThing
|
|
Thing
|