7 lines
174 B
PHP
7 lines
174 B
PHP
<?php
|
|
|
|
$repos = json_decode(file_get_contents("https://git.reim.ar/api/v1/repos/search"))->data;
|
|
$repo = $repos[array_rand($repos)];
|
|
header("Location: $repo->html_url");
|
|
|