mirror of
https://github.com/dstotijn/hetty.git
synced 2025-07-01 18:47:29 -04:00
12 lines
159 B
Go
12 lines
159 B
Go
package sqlite
|
|
|
|
import "time"
|
|
|
|
type httpResponse struct {
|
|
ID *int64
|
|
Proto *string
|
|
StatusCode *int
|
|
Body *[]byte
|
|
Timestamp *time.Time
|
|
}
|