11 lines
151 B
Go
11 lines
151 B
Go
package dtos
|
|
|
|
type ShortURL struct {
|
|
UID string `json:"uid"`
|
|
URL string `json:"url"`
|
|
}
|
|
|
|
type CreateShortURLCmd struct {
|
|
Path string `json:"path"`
|
|
}
|