()
| 47 | ) |
| 48 | |
| 49 | func init() { |
| 50 | if _, err := os.Stat(signCacheDir); err != nil { |
| 51 | err = os.MkdirAll(signCacheDir, os.ModePerm) |
| 52 | if err != nil { |
| 53 | panic(err) |
| 54 | } |
| 55 | } |
| 56 | } |
| 57 | |
| 58 | func NewSign() *Sign { |
| 59 | return &Sign{} |
nothing calls this directly
no outgoing calls
no test coverage detected