# -*- coding: utf-8 -*- ############ # ENV Vars # ############ # Imports from tubot.static.abc import ENV class PN_CACHE(ENV): """ Python Native Cache dir """ _name = "PN_CACHE" DEFAULT = "/etc/tubot" class REDIS_HOST(ENV): """ Redis host adress """ _name = "REDIS_HOST" DEFAULT = "localhost:6379"