Globally renamed Snowflake to ID

This commit is contained in:
2022-08-27 14:05:59 +02:00
parent 03d845b00d
commit 590906d555
6 changed files with 11 additions and 11 deletions

View File

@ -2,7 +2,7 @@
package types
type ExpandReq struct {
Snowflake string `path:"snowflake"`
ID string `path:"id"`
}
type ExpandResp struct {
@ -15,5 +15,5 @@ type ShortenReq struct {
}
type ShortenResp struct {
Id string `json:"id"`
ID string `json:"id"`
}