Files
houston-be/entity/users.go
Shubham Kirve b974cb6bf3 TP-0000 | Initialize houston repo (#1)
* TP-0000 | intialize houston repo

* TP-0000 | intialize houston repo
2023-03-29 00:01:17 +05:30

12 lines
161 B
Go

package entity
type UsersEntity struct {
Name string
SlackUserId string
Active bool
}
func (UsersEntity) TableName() string {
return "users"
}