This repository has been archived on 2024-11-28. You can view files and clone it, but cannot push or open issues or pull requests.
Files
schisandra-cloud-album/config/conf_encrypt.go
landaiqing 55759a33db 🔒 token encryption
2024-08-14 19:57:37 +08:00

9 lines
182 B
Go

package config
type Encrypt struct {
Key string `yaml:"key"`
IV string `yaml:"iv"`
PublicKey string `yaml:"public-key"`
PrivateKey string `yaml:"private-key"`
}