8 lines
95 B
Go
8 lines
95 B
Go
package domain
|
|
|
|
import "github.com/google/uuid"
|
|
|
|
type AuthPayload struct {
|
|
UserID uuid.UUID
|
|
}
|