Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 213 Bytes

API.md

File metadata and controls

16 lines (12 loc) · 213 Bytes

Homepage API Documentation

这里是 Homepage 的 API 的一些约定。

/api/v1/login

PostLoginRequest = {
    username: string;
    password: string;
}

PostLoginResponse = {
    token: string;
}