openfga @ v0.1.4
integrity
- size
- 333.8 KiB
- downloaded
- last checked
- overlays
- go
- detected
- go module github.com/openfga/openfga
release notes
Added
- OpenFGA Playground support (#68)
- CORS policy configuration (#65 )
download
unix · zip
curl -fL -o v0.1.4.zip https://ratatoskr.space/pkg/openfga/v0.1.4.zip
printf '%s %s\n' 'd885b987940aab60998e66df6f928928778c3719cdcbd0708d8421a0a125def7' 'v0.1.4.zip' | sha256sum -c -
windows · zip
$url = "https://ratatoskr.space/pkg/openfga/v0.1.4.zip"
$out = "v0.1.4.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "d885b987940aab60998e66df6f928928778c3719cdcbd0708d8421a0a125def7") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v0.1.4.tar.gz https://ratatoskr.space/pkg/openfga/v0.1.4.tar.gz
printf '%s %s\n' 'ab559ea12b0052484f34e2d253c9026b6e4e1c5638fe596cbce07db522d3a17c' 'v0.1.4.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "https://ratatoskr.space/pkg/openfga/v0.1.4.tar.gz"
$out = "v0.1.4.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "ab559ea12b0052484f34e2d253c9026b6e4e1c5638fe596cbce07db522d3a17c") { throw "sha256 mismatch" }
download via yggdrasil mesh
unix · zip
curl -fL -o v0.1.4.zip http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/openfga/v0.1.4.zip
printf '%s %s\n' 'd885b987940aab60998e66df6f928928778c3719cdcbd0708d8421a0a125def7' 'v0.1.4.zip' | sha256sum -c -
windows · zip
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/openfga/v0.1.4.zip"
$out = "v0.1.4.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "d885b987940aab60998e66df6f928928778c3719cdcbd0708d8421a0a125def7") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v0.1.4.tar.gz http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/openfga/v0.1.4.tar.gz
printf '%s %s\n' 'ab559ea12b0052484f34e2d253c9026b6e4e1c5638fe596cbce07db522d3a17c' 'v0.1.4.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/openfga/v0.1.4.tar.gz"
$out = "v0.1.4.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "ab559ea12b0052484f34e2d253c9026b6e4e1c5638fe596cbce07db522d3a17c") { throw "sha256 mismatch" }
| artifact | format | size | hashes |
|---|---|---|---|
| v0.1.4.zip | zip | 333.2 KiB |
blake3-24 5685ac360ced46cd9189c912908f834d770e83dcd1e5eec5
sha256 d885b987940aab60998e66df6f928928778c3719cdcbd0708d8421a0a125def7
sha1 bd3bf2fd2b71e9e3d655d09333ebc3e65092d638
|
| v0.1.4.tar.gz | tar.gz | 271.4 KiB |
blake3-24 5a4679b1d065ac54bd80704f27946eee823269857f5055bc
sha256 ab559ea12b0052484f34e2d253c9026b6e4e1c5638fe596cbce07db522d3a17c
sha1 59aef3f87c8d5045415ece9bd5d957b81cf6509d
|
go module archive
module zip with the module path rewritten to this mirror; fetched by go get through the
GOPROXY route
| artifact | format | size | hashes |
|---|---|---|---|
| v0.1.4.zip | zip | 284.7 KiB |
blake3-24 b97160b25e5c3f9624287710bb63ce457d7444635867f267
sha256 93837f1c47086e3c5dcf59d720c89c7f2399dde481c5d6bbcd881271a888593a
sha1 2b9de9b9446cc3c1b161789654b97ef5999f0a25
|
install
bazel
http_archive(
name = "openfga",
urls = ["https://ratatoskr.space/pkg/openfga/v0.1.4.tar.gz"],
integrity = "sha256-q1WeoSsAUkhPNOLSU8kCa25OHFY4/llsvOB9tSLToXw=",
strip_prefix = "openfga-v0.1.4",
)
zig
.url = "https://ratatoskr.space/pkg/openfga/v0.1.4.tar.gz",
go
GOPROXY=https://ratatoskr.space GOSUMDB=off go get ratatoskr.space/pkg/openfga@v0.1.4
install via yggdrasil mesh
bazel
http_archive(
name = "openfga",
urls = ["http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/openfga/v0.1.4.tar.gz"],
integrity = "sha256-q1WeoSsAUkhPNOLSU8kCa25OHFY4/llsvOB9tSLToXw=",
strip_prefix = "openfga-v0.1.4",
)
zig
.url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/openfga/v0.1.4.tar.gz",
go
GOPROXY=http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg GOSUMDB=off GOINSECURE=14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/* go get 14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/openfga@v0.1.4