| 47 | } |
| 48 | |
| 49 | type Manager struct { |
| 50 | s Storage |
| 51 | clc costLimitCache |
| 52 | rlc rateLimitCache |
| 53 | ac accessCache |
| 54 | kc keyCache |
| 55 | } |
| 56 | |
| 57 | func NewManager(s Storage, clc costLimitCache, rlc rateLimitCache, ac accessCache, kc keyCache) *Manager { |
| 58 | return &Manager{ |
nothing calls this directly
no outgoing calls
no test coverage detected