summary refs log tree commit diff stats
path: root/ranger/shared/__init__.py
blob: 1492eec0f27fd583a46e0bc33fa0ceb71af3b6c8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
"""Shared objects contian singleton variables wich can be
inherited, essentially acting like global variables."""
class Awareness(object):
	pass

class EnvironmentAware(Awareness):
   env = None

class FileManagerAware(Awareness):
   fm = None

from .mimetype import MimeTypeAware
from .settings import SettingsAware