You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
10 months ago | |
|---|---|---|
| apps | 10 months ago | |
| internal | 10 months ago | |
| static/css | 1 year ago | |
| templates | 1 year ago | |
| .gitignore | 1 year ago | |
| Readme.md | 1 year ago | |
| go.mod | 1 year ago | |
| go.sum | 1 year ago | |
| web_templates.go | 1 year ago | |
Readme.md
Complete ServiceTrade Tool Project
Project Structure
├── apps
│ ├── cli
│ │ └── main.go
│ └── web
│ └── main.go
├── go.mod
├── go.sum
├── internal
│ ├── api
│ │ ├── api.go
│ │ ├── auth.go
│ │ ├── deficiencies.go
│ │ ├── invoices.go
│ │ ├── jobs.go
│ │ └── session_store.go
│ ├── auth
│ │ └── auth.go
│ ├── handlers
│ │ ├── cli
│ │ │ ├── admin.go
│ │ │ ├── assets.go
│ │ │ ├── companies.go
│ │ │ ├── contacts.go
│ │ │ ├── contracts.go
│ │ │ ├── generic.go
│ │ │ ├── invoices.go
│ │ │ ├── jobs.go
│ │ │ ├── locations.go
│ │ │ ├── login.go
│ │ │ ├── notifications.go
│ │ │ ├── quotes.go
│ │ │ ├── services.go
│ │ │ ├── tags.go
│ │ │ └── users.go
│ │ └── web
│ │ ├── admin.go
│ │ ├── assets.go
│ │ ├── companies.go
│ │ ├── contacts.go
│ │ ├── contracts.go
│ │ ├── dashboard.go
│ │ ├── generic.go
│ │ ├── invoices.go
│ │ ├── jobs.go
│ │ ├── locations.go
│ │ ├── login.go
│ │ ├── notifications.go
│ │ ├── quotes.go
│ │ ├── services.go
│ │ ├── tags.go
│ │ └── users.go
│ ├── middleware
│ │ └── auth_middleware.go
│ ├── models
│ │ └── models.go
│ ├── ui
│ │ └── ui.go
│ └── utils
│ └── utils.go
├── Readme.md
├── static
│ └── css
│ └── styles.css
└── templates
├── dashboard.html
├── layout.html
├── login.html
└── partials
├── admin.html
├── assets.html
├── companies.html
├── invoice_search.html
├── invoice_search_results.html
└── jobs.html
```