Add plan catalog and subscription schema support, seed baselines, and real importers for core domestic subscriptions plus stable official pricing sources. This commit also hardens the shared fetch layers so the importers can support live collection and database writes instead of relying on manual placeholders alone.
12 lines
290 B
Go
12 lines
290 B
Go
//go:build llm_script
|
|
|
|
package main
|
|
|
|
import "testing"
|
|
|
|
func TestCatalogSeedVerificationImporterKeyConstant(t *testing.T) {
|
|
if catalogSeedVerificationImporterKey != "import_catalog_seed_verification.go" {
|
|
t.Fatalf("importer key 常量错误: %q", catalogSeedVerificationImporterKey)
|
|
}
|
|
}
|