alexander

This commit is contained in:
IDONTSUDO 2024-08-21 16:15:54 +03:00
parent cf75b4220a
commit 7063e93c75
94 changed files with 1201 additions and 24490 deletions

View file

@ -0,0 +1,5 @@
import { HttpMethod, HttpRepository } from "../../core/repository/core_http_repository";
export class TopicsHttpRepository extends HttpRepository {
getAllTopics = () => this._jsonRequest(HttpMethod.GET, "/topics");
}