// 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 }