mirror of
https://github.com/btouchard/ackify.git
synced 2026-05-03 13:39:53 -05:00
ab6cdbb383
Enable importing backend packages in SaaS project by aligning module path with its location in the repository.
9 lines
277 B
Go
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
|