inventory-app/cmd/inventory/main_test.go
2023-01-25 14:25:58 +03:00

14 lines
148 B
Go

// Copyright 2022 Listware
package main
import (
"testing"
"go.uber.org/goleak"
)
func TestMain(t *testing.T) {
defer goleak.VerifyNone(t)
}