├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── __init__.py ├── backend ├── __init__.py └── for_django.py └── frontend ├── for_angular.js └── for_angular_externs.js /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/dualhttp/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/dualhttp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/dualhttp/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/for_django.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/dualhttp/HEAD/backend/for_django.py -------------------------------------------------------------------------------- /frontend/for_angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/dualhttp/HEAD/frontend/for_angular.js -------------------------------------------------------------------------------- /frontend/for_angular_externs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/dualhttp/HEAD/frontend/for_angular_externs.js --------------------------------------------------------------------------------