mirror of
https://github.com/quay/quay.git
synced 2026-01-27 18:42:52 +03:00
8 lines
120 B
Python
8 lines
120 B
Python
class FakeMixpanel(object):
|
|
def track(*args, **kwargs):
|
|
pass
|
|
|
|
|
|
def init_app(app):
|
|
return FakeMixpanel()
|