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
Raw Normal View History

2022-07-25 05:39:16 +00:00
package wal
func must(err error) {
if err != nil {
panic(err)
}
}