package
Version:
v0.0.0-...-473e3f1
Opens a new window with list of versions in this module.
Published: Feb 22, 2024
License: Apache-2.0
Opens a new window with license information.
Imports: 0
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
type ExpireReq struct {
Key string `json:"key" binding:"required,max=255,min=1"`
TTL int64 `json:"ttl" binding:"required"`
}
type KeyReq struct {
Key string `form:"key" binding:"required,max=255,min=1"`
}
type StorePutReq struct {
Key string `json:"key" binding:"required,max=255,min=1"`
Value string `json:"value" binding:"required,max=255,min=1"`
}
type StorePutWithTTLReq struct {
Key string `json:"key" binding:"required,max=255,min=1"`
Value string `json:"value" binding:"required,max=255,min=1"`
TTL int64 `json:"ttl" binding:"required"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.