Actor handles all shared actions
| 8 | |
| 9 | // Actor handles all shared actions |
| 10 | type Actor struct { |
| 11 | Config Config |
| 12 | AuthActor |
| 13 | } |
| 14 | |
| 15 | // NewActor returns an Actor with default settings |
| 16 | func NewActor(config Config) *Actor { |
nothing calls this directly
no outgoing calls
no test coverage detected