first commit

This commit is contained in:
aman.singh
2024-09-12 02:59:54 +05:30
parent b00532eb04
commit dcb291f7e9
15 changed files with 544 additions and 10 deletions

6
models/db/houston.go Normal file
View File

@@ -0,0 +1,6 @@
package db
type Houston struct {
ID int `json:"id" gorm:"autoIncrement:true"`
houstonID string `json:"houstonID"`
}

View File

@@ -13,4 +13,5 @@ type Project struct {
Name string `json:"name" gorm:"unique"`
Team string `json:"team"`
Icon string `json:"icon"`
GithubUrl string `json:"githubUrl"`
}