mirror of
https://github.com/xorcare/testing-go-code-with-postgres.git
synced 2025-01-11 18:14:17 +02:00
18 lines
333 B
Go
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
|
|
}
|