├── .github └── workflows │ └── gh-pages.yml ├── .gitignore ├── CONTRIBUTING.md ├── README.md └── openid-federation-1_0.xml /.github/workflows/gh-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/federation/HEAD/.github/workflows/gh-pages.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | env 2 | openid-federation-1_0.html 3 | 4 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/federation/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/federation/HEAD/README.md -------------------------------------------------------------------------------- /openid-federation-1_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openid/federation/HEAD/openid-federation-1_0.xml --------------------------------------------------------------------------------