├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── SECURITY.md └── VERSION /.gitignore: -------------------------------------------------------------------------------- 1 | *_enterprise* 2 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualCable/openuds/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualCable/openuds/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualCable/openuds/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VirtualCable/openuds/HEAD/SECURITY.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 5.0.0 2 | --------------------------------------------------------------------------------