* Document extractor service * Fixing vendor modules * Addressing PR Review comments * Some small simplifications * Fixing a linter complain * simplifying a bit the code using package variables Co-authored-by: Mattermod <mattermod@users.noreply.github.com>
8 строки
87 B
Go
8 строки
87 B
Go
package brotli
|
|
|
|
func assert(cond bool) {
|
|
if !cond {
|
|
panic("assertion failure")
|
|
}
|
|
}
|