This commit is contained in:
2026-05-23 19:54:03 +09:00
parent c3383b778b
commit 1fd95616a5
46 changed files with 3920 additions and 107 deletions
+10
View File
@@ -1,6 +1,11 @@
import ChannelCreate from "./api/channel/create";
import ChannelEdit from "./api/channel/edit";
import ChannelGet from "./api/channel/get";
import ChannelList from "./api/channel/list";
import CommunityCreate from "./api/community/create";
import CommunityEdit from "./api/community/edit";
import CommunityGet from "./api/community/get";
import CommunityList from "./api/community/list";
import Me from "./api/me";
import PrimarySignin from "./api/primary/signin";
import PrimarySignup from "./api/primary/signup";
@@ -15,8 +20,13 @@ type ApiMap =
PrimarySignin &
PrimarySignup &
Me &
CommunityCreate &
CommunityEdit &
CommunityGet &
CommunityList &
ChannelCreate &
ChannelEdit &
ChannelGet &
ChannelList;
export default ApiMap;