secret.go 118 B

1234567
  1. package model
  2. // Secret secret
  3. type Secret struct {
  4. KeyType int8 `json:"key_type"`
  5. Key string `json:"key"`
  6. }