├── .github └── workflows │ ├── ci.yml │ └── release.yml ├── .gitignore ├── .idea ├── .gitignore ├── codeStyles │ └── codeStyleConfig.xml ├── inspectionProfiles │ └── Project_Default.xml ├── modules.xml ├── vcs.xml └── wgcf-teams.iml ├── CHANGELOG.md ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── devnotes.md ├── flake.lock ├── flake.nix ├── guide.md ├── src ├── cli.rs ├── main.rs ├── registration.rs └── wireguard_config.rs └── todo.md /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poscat0x04/wgcf-teams/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poscat0x04/wgcf-teams/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | result 3 | -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poscat0x04/wgcf-teams/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poscat0x04/wgcf-teams/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poscat0x04/wgcf-teams/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poscat0x04/wgcf-teams/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poscat0x04/wgcf-teams/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/wgcf-teams.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poscat0x04/wgcf-teams/HEAD/.idea/wgcf-teams.iml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poscat0x04/wgcf-teams/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poscat0x04/wgcf-teams/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poscat0x04/wgcf-teams/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poscat0x04/wgcf-teams/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poscat0x04/wgcf-teams/HEAD/README.md -------------------------------------------------------------------------------- /devnotes.md: -------------------------------------------------------------------------------- 1 | # Notes for developers 2 | -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poscat0x04/wgcf-teams/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poscat0x04/wgcf-teams/HEAD/flake.nix -------------------------------------------------------------------------------- /guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poscat0x04/wgcf-teams/HEAD/guide.md -------------------------------------------------------------------------------- /src/cli.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poscat0x04/wgcf-teams/HEAD/src/cli.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poscat0x04/wgcf-teams/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/registration.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poscat0x04/wgcf-teams/HEAD/src/registration.rs -------------------------------------------------------------------------------- /src/wireguard_config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poscat0x04/wgcf-teams/HEAD/src/wireguard_config.rs -------------------------------------------------------------------------------- /todo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poscat0x04/wgcf-teams/HEAD/todo.md --------------------------------------------------------------------------------