admin represents an admin user with privileges.
| 22 | |
| 23 | // admin represents an admin user with privileges. |
| 24 | type admin struct { |
| 25 | user // Embedded Type |
| 26 | level string |
| 27 | } |
| 28 | |
| 29 | // main is the entry point for the application. |
| 30 | func main() { |
nothing calls this directly
no outgoing calls
no test coverage detected