This commit is contained in:
Shish
2020-10-24 22:16:18 +01:00
parent 583cf6751a
commit c11f0dafd0
3 changed files with 22 additions and 6 deletions

View File

@ -1,10 +1,23 @@
<?php declare(strict_types=1);
use \MicroHTML\HTMLElement;
function TAGS(...$args) {return new HTMLElement("tags", $args);}
function TAG(...$args) {return new HTMLElement("tag", $args);}
function POSTS(...$args) {return new HTMLElement("posts", $args);}
function POST(...$args) {return new HTMLElement("post", $args);}
function TAGS(...$args)
{
return new HTMLElement("tags", $args);
}
function TAG(...$args)
{
return new HTMLElement("tag", $args);
}
function POSTS(...$args)
{
return new HTMLElement("posts", $args);
}
function POST(...$args)
{
return new HTMLElement("post", $args);
}
class DanbooruApi extends Extension