From 9cc6c7f1c0c830618961e1d16e4424891cfc8437 Mon Sep 17 00:00:00 2001 From: steden <1470804@qq.com> Date: Thu, 27 Jul 2023 20:58:27 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E6=95=B4=E5=8D=95=E5=85=83=E6=B5=8B?= =?UTF-8?q?=E8=AF=95=E7=94=A8=E4=BE=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- test/init_test.go | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 test/init_test.go diff --git a/test/init_test.go b/test/init_test.go new file mode 100644 index 0000000..58bee0e --- /dev/null +++ b/test/init_test.go @@ -0,0 +1,10 @@ +package test + +import ( + "github.com/farseer-go/fs" + "github.com/farseer-go/fs/modules" +) + +func init() { + fs.Initialize[modules.FarseerKernelModule]("unit test") +}