1
0
mirror of https://github.com/xorcare/testing-go-code-with-postgres.git synced 2025-01-11 18:14:17 +02:00
testing-go-code-with-postgres/user_model.go
2023-07-05 01:31:59 +03:00

18 lines
333 B
Go

// Copyright (c) 2023 Vasiliy Vasilyuk. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package testing_go_code_with_postgres
import (
"time"
"github.com/google/uuid"
)
type User struct {
ID uuid.UUID
Username string
CreatedAt time.Time
}