> For the complete documentation index, see [llms.txt](https://eda-1.gitbook.io/lgwt/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://eda-1.gitbook.io/lgwt/sozdanie-prilozheniya/app-intro.md).

# Введение

Теперь, когда вы, надеюсь, усвоили раздел *Основы Go*, у вас есть прочная основа для большинства языковых особенностей Go и понимание того, как выполнять TDD.

В этом следующем разделе мы займёмся созданием приложения.

Каждая глава будет развивать предыдущую, расширяя функциональность приложения по мере указаний нашего владельца продукта.

Будут введены новые концепции, чтобы помочь писать отличный код, но большая часть нового материала будет заключаться в изучении того, что можно реализовать с помощью стандартной библиотеки Go.

К концу этого вы должны хорошо понимать, как итеративно писать приложение на Go, подкрепленное тестами.

* [HTTP-сервер](/lgwt/sozdanie-prilozheniya/http-server.md) - Мы создадим приложение, которое прослушивает HTTP-запросы и отвечает на них.
* [JSON, маршрутизация и встраивание](/lgwt/sozdanie-prilozheniya/json.md) - Мы заставим наши конечные точки возвращать JSON и изучим, как выполнять маршрутизацию.
* [Ввод-вывод и сортировка](/lgwt/sozdanie-prilozheniya/io.md) - Мы будем сохранять и считывать наши данные с диска, а также рассмотрим сортировку данных.
* [Командная строка и структура проекта](/lgwt/sozdanie-prilozheniya/command-line.md) - Поддержка нескольких приложений из одной кодовой базы и чтение ввода из командной строки.
* [Время](/lgwt/sozdanie-prilozheniya/time.md) - Использование пакета `time` для планирования действий.
* [Веб-сокеты](/lgwt/sozdanie-prilozheniya/websockets.md) - Научимся писать и тестировать сервер, использующий Веб-сокеты.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://eda-1.gitbook.io/lgwt/sozdanie-prilozheniya/app-intro.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
