mirror of
https://github.com/hemna/aprsd-twitter-plugin.git
synced 2025-06-14 04:12:26 -04:00
This patch updates for using the oslo_config style CONF and declares the plugin config vars
11 lines
138 B
Python
11 lines
138 B
Python
import logging
|
|
|
|
from oslo_config import cfg
|
|
|
|
from aprsd_twitter_plugin.conf import twitter
|
|
|
|
|
|
CONF = cfg.CONF
|
|
|
|
twitter.register_opts(CONF)
|