mirror of
https://github.com/APIParkLab/APIPark.git
synced 2026-06-04 10:13:53 +08:00
26 lines
420 B
Go
26 lines
420 B
Go
package log_driver
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type Log struct {
|
|
ID string
|
|
Service string
|
|
Method string
|
|
Url string
|
|
RemoteIP string
|
|
Consumer string
|
|
Authorization string
|
|
RecordTime time.Time
|
|
}
|
|
|
|
type LogInfo struct {
|
|
ID string
|
|
ContentType string
|
|
RequestBody string
|
|
ProxyBody string
|
|
ProxyResponseBody string
|
|
ResponseBody string
|
|
}
|