mirror of
https://github.com/VinGarcia/ksql.git
synced 2025-05-29 18:52:54 +00:00
11 lines
195 B
Go
11 lines
195 B
Go
package repo
|
|
|
|
import "time"
|
|
|
|
type User struct {
|
|
ID int `ksql:"id"`
|
|
Name string `ksql:"name"`
|
|
Email string `ksql:"email"`
|
|
CreatedAt time.Time `ksql:"created_at"`
|
|
}
|