| 7 | ) |
| 8 | |
| 9 | type APIKey struct { |
| 10 | Id string |
| 11 | Name string |
| 12 | Value string |
| 13 | Creator string |
| 14 | Updater string |
| 15 | CreateAt time.Time |
| 16 | UpdateAt time.Time |
| 17 | Expired int64 |
| 18 | } |
| 19 | |
| 20 | type Create struct { |
| 21 | Id string |
nothing calls this directly
no outgoing calls
no test coverage detected