MustNewStore 创建 Store,失败时 panic
(config Config)
| 83 | |
| 84 | // MustNewStore 创建 Store,失败时 panic |
| 85 | func MustNewStore(config Config) Store { |
| 86 | s, err := NewStore(config) |
| 87 | if err != nil { |
| 88 | panic(fmt.Sprintf("failed to create store: %v", err)) |
| 89 | } |
| 90 | return s |
| 91 | } |
nothing calls this directly
no test coverage detected