Files
ackify/backend/internal/domain/models/user.go
T
Benjamin ab6cdbb383 refactor(go): rename module to github.com/btouchard/ackify-ce/backend
Enable importing backend packages in SaaS project by aligning module
path with its location in the repository.
2025-12-08 19:01:28 +01:00

9 lines
277 B
Go

// SPDX-License-Identifier: AGPL-3.0-or-later
package models
import "github.com/btouchard/ackify-ce/backend/pkg/types"
// User is an alias for the unified user type.
// This allows domain code to use models.User while sharing the same underlying type.
type User = types.User