This repository has been archived on 2022-07-30. You can view files and clone it, but cannot push or open issues/pull-requests.
mdb/kvstore/wal/util.go

8 lines
71 B
Go

package wal
func must(err error) {
if err != nil {
panic(err)
}
}