skills screen

This commit is contained in:
IDONTSUDO 2024-08-29 12:26:54 +03:00
parent cac5fad8ce
commit a920f5fb45
49 changed files with 681 additions and 168 deletions

View file

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