From 8ed63fe4b03f43f3c4b8053c6bde9e599677be99 Mon Sep 17 00:00:00 2001 From: yusing Date: Mon, 7 Apr 2025 13:33:28 +0800 Subject: [PATCH] refactor: rename module config/types from "types" to "config" --- internal/config/types/config.go | 2 +- internal/config/types/homepage_config.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/config/types/config.go b/internal/config/types/config.go index 863c3de..7c1b9d3 100644 --- a/internal/config/types/config.go +++ b/internal/config/types/config.go @@ -1,4 +1,4 @@ -package types +package config import ( "context" diff --git a/internal/config/types/homepage_config.go b/internal/config/types/homepage_config.go index 14301c8..3499a4d 100644 --- a/internal/config/types/homepage_config.go +++ b/internal/config/types/homepage_config.go @@ -1,4 +1,4 @@ -package types +package config type HomepageConfig struct { UseDefaultCategories bool `json:"use_default_categories"`