ckanext-googleanalytics_v2..../ckanext/googleanalytics/plugin/flask_plugin.py

16 lines
293 B
Python
Raw Normal View History

2019-11-22 15:59:22 +01:00
# -*- coding: utf-8 -*-
import Queue
import ckan.plugins as plugins
from ckanext.googleanalytics.views import ga
class GAMixinPlugin(plugins.SingletonPlugin):
plugins.implements(plugins.IBlueprint)
analytics_queue = Queue.Queue()
def get_blueprint(self):
return [ga]