admin defines a admin in the program.
| 26 | |
| 27 | // admin defines a admin in the program. |
| 28 | type admin struct { |
| 29 | name string |
| 30 | email string |
| 31 | } |
| 32 | |
| 33 | // notify implements the notifier interface with a pointer receiver. |
| 34 | func (a *admin) notify() { |
nothing calls this directly
no outgoing calls
no test coverage detected