mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-14 06:42:16 +00:00
9 lines
163 B
Python
9 lines
163 B
Python
from sso.services import BaseService
|
|
|
|
class DummyService(BaseService):
|
|
""" Always passes, good for a test service """
|
|
pass
|
|
|
|
|
|
ServiceClass = 'DummyService'
|