styx/main_test.go
Christopher Talib 84e4937f85 Major version update
This new work implements the server and the loader in two different
binaries allowing the code while updating the IOC list.

It updates also the documentation to reflect the new changes.
2020-08-24 17:20:07 +02:00

11 lines
93 B
Go

package styx
import (
"os"
"testing"
)
func TestMain(m *testing.M) {
os.Exit(m.Run())
}