This repository has been archived on 2025-07-07. You can view files and clone it, but cannot push or open issues or pull requests.
Files
eternos/README.md
2025-01-04 14:04:53 +03:00

26 lines
1.9 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

marketplace/
├── cmd/ # Основные исполняемые файлы
│ ├── server/ # Входная точка приложения
│ │ └── main.go
├── internal/ # Основная логика
│ ├── products/ # Модуль для работы с товарами
│ │ ├── handler.go # HTTP-обработчики для товаров
│ │ ├── model.go # Модели данных для товаров
│ │ ├── repository.go # Доступ к базе данных
│ │ └── service.go # Логика обработки товаров
│ ├── users/ # Модуль пользователей
│ ├── auth/ # Аутентификация и авторизация
├── pkg/ # Вспомогательные библиотеки
├── configs/ # Конфигурационные файлы
├── migrations/ # SQL миграции
├── frontend/ # Фронтенд-ресурсы
│ ├── css/ # Стили
│ │ ├── main.css # Главный файл стилей
│ │ ├── product.css # Стили для страниц с товарами
│ ├── js/ # Скрипты
│ │ ├── main.js # Главный файл скриптов
│ │ ├── product.js # Скрипты для работы с товарами
│ └── index.html # Главная HTML-страница
├── static/ # Статические файлы (загружаемые изображения и др.)
└── go.mod # Go-модуль