Stopper is an interface tasked with stopping the profiling process.
| 16 | |
| 17 | // Stopper is an interface tasked with stopping the profiling process. |
| 18 | type Stopper interface { |
| 19 | Stop() |
| 20 | } |
| 21 | |
| 22 | // StartProfile starts a new mode for profiling. |
| 23 | func StartProfile(conf *viper.Viper) Stopper { |
no outgoing calls
no test coverage detected