package store import ( "testing" _ "modernc.org/sqlite" ) // TestDependencyProbe 探针:保证 modernc.org/sqlite 出现在 go.mod(W1 交付纪律)。 // 真正的 migration/抢单测试见 store_test.go。 func TestDependencyProbe(t *testing.T) { drv := "sqlite" if drv == "" { t.Fatal("unreachable") } }