Singleton calls the same method of the global concrete.
(resolver interface{})
| 5 | |
| 6 | // Singleton calls the same method of the global concrete. |
| 7 | func Singleton(resolver interface{}) error { |
| 8 | return Global.Singleton(resolver) |
| 9 | } |
| 10 | |
| 11 | // SingletonLazy calls the same method of the global concrete. |
| 12 | func SingletonLazy(resolver interface{}) error { |
nothing calls this directly
no test coverage detected
searching dependent graphs…