jwt_result.go 163 B

1234567891011
  1. package zllauth1
  2. type JwtResult struct {
  3. JwtStr string
  4. IssueTime float64
  5. ExpireTime float64
  6. }
  7. func NewEmptyJwtResult() JwtResult {
  8. return JwtResult{}
  9. }