Moved cli and web directory into app dir

This commit is contained in:
Lucas
2026-01-02 12:27:03 -08:00
parent c9f5feb9cb
commit 3fba4355fe
12 changed files with 0 additions and 0 deletions

24
apps/cli/models.go Normal file
View File

@@ -0,0 +1,24 @@
package models
type Subcategory struct {
Name string `json:"name"`
ID string `json:"id"`
}
type Platform struct {
Name string `json:"name"`
ID string `json:"id"`
}
type Tag struct {
Name string `json:"name"`
ID string `json:"id"`
}
type Application struct {
Name string `json:"name"`
RepoURL string `json:"repo_url"`
Tags []string `json:"tags,omitempty"`
Platforms []string `json:"platforms,omitempty"`
Category string `json:"category"`
}