Full Mattermost server source with integrated Community Enterprise features. Includes vendor directory for offline/air-gapped builds. Structure: - enterprise-impl/: Enterprise feature implementations - enterprise-community/: Init files that register implementations - enterprise/: Bridge imports (community_imports.go) - vendor/: All dependencies for offline builds Build (online): go build ./cmd/mattermost Build (offline/air-gapped): go build -mod=vendor ./cmd/mattermost 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
15 lines
678 B
Markdown
15 lines
678 B
Markdown
This package is a brotli compressor and decompressor implemented in Go.
|
||
It was translated from the reference implementation (https://github.com/google/brotli)
|
||
with the `c2go` tool at https://github.com/andybalholm/c2go.
|
||
|
||
I have been working on new compression algorithms (not translated from C)
|
||
in the matchfinder package.
|
||
You can use them with the NewWriterV2 function.
|
||
Currently they give better results than the old implementation
|
||
(at least for compressing my test file, Newton’s *Opticks*)
|
||
on levels 2 to 6.
|
||
|
||
I am using it in production with https://github.com/andybalholm/redwood.
|
||
|
||
API documentation is found at https://pkg.go.dev/github.com/andybalholm/brotli?tab=doc.
|