mdb/util.go

15 lines
260 B
Go

package mdb
/*Copyright (c) 2022, John David Lee
All rights reserved.
This source code is licensed under the BSD-style license found in the
LICENSE file in the root directory of this source tree.
*/
func must(err error) {
if err != nil {
panic(err)
}
}