reworked api interfaces

This commit is contained in:
2025-09-22 16:41:49 -07:00
parent f2256a9cfe
commit 1b3fb04dcd
44 changed files with 1356 additions and 207 deletions

7
internal/data/base.go Normal file
View File

@@ -0,0 +1,7 @@
package data
import shared "github.com/sstent/go-garth/shared/interfaces"
// Alias shared BaseData and Data into internal/data for backward compatibility with tests
type BaseData = shared.BaseData
type Data = shared.Data