mirror of
				https://github.com/go-micro/go-micro.git
				synced 2025-10-30 23:27:41 +02:00 
			
		
		
		
	Expiration is actually a unix timestamp (#1290)
* Expiration is actually a unix timestamp * int -> int64
This commit is contained in:
		| @@ -47,12 +47,12 @@ type apiResponse struct { | ||||
| 		ID         string    `json:"id"` | ||||
| 		Type       string    `json:"type"` | ||||
| 		Name       string    `json:"name"` | ||||
| 		Expiration string    `json:"expiration"` | ||||
| 		Expiration int64     `json:"expiration"` | ||||
| 		Content    string    `json:"content"` | ||||
| 		Proxiable  bool      `json:"proxiable"` | ||||
| 		Proxied    bool      `json:"proxied"` | ||||
| 		TTL        int       `json:"ttl"` | ||||
| 		Priority   int       `json:"priority"` | ||||
| 		TTL        int64     `json:"ttl"` | ||||
| 		Priority   int64     `json:"priority"` | ||||
| 		Locked     bool      `json:"locked"` | ||||
| 		ZoneID     string    `json:"zone_id"` | ||||
| 		ZoneName   string    `json:"zone_name"` | ||||
|   | ||||
		Reference in New Issue
	
	Block a user