├── .gitignore ├── LICENSE.txt ├── README.md ├── setup.cfg ├── setup.py └── wallets ├── __init__.py ├── admin.py ├── apps.py ├── lib.py ├── migrations └── __init__.py ├── models.py ├── signals.py ├── tasks.py ├── urls.py └── views.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver3310/django-wallets/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver3310/django-wallets/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver3310/django-wallets/HEAD/README.md -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver3310/django-wallets/HEAD/setup.py -------------------------------------------------------------------------------- /wallets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver3310/django-wallets/HEAD/wallets/__init__.py -------------------------------------------------------------------------------- /wallets/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver3310/django-wallets/HEAD/wallets/admin.py -------------------------------------------------------------------------------- /wallets/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver3310/django-wallets/HEAD/wallets/apps.py -------------------------------------------------------------------------------- /wallets/lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver3310/django-wallets/HEAD/wallets/lib.py -------------------------------------------------------------------------------- /wallets/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wallets/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver3310/django-wallets/HEAD/wallets/models.py -------------------------------------------------------------------------------- /wallets/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver3310/django-wallets/HEAD/wallets/signals.py -------------------------------------------------------------------------------- /wallets/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver3310/django-wallets/HEAD/wallets/tasks.py -------------------------------------------------------------------------------- /wallets/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver3310/django-wallets/HEAD/wallets/urls.py -------------------------------------------------------------------------------- /wallets/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver3310/django-wallets/HEAD/wallets/views.py --------------------------------------------------------------------------------