mirror of
https://github.com/nikdoof/test-auth.git
synced 2026-01-30 16:08:14 +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'
|