blob: d1b1b707d31e6e85b03b76d3c0b2609eb68022c9 (
plain)
1
2
3
4
5
6
7
8
9
|
// Package types include common data structures used in multiple packages.
package types
type BaseResponse[T any] struct {
Code int `json:"code"`
Message string `json:"message"`
TTL int `json:"ttl"`
Data T `json:"data"`
}
|