bot-api-example 0.1.1

Пример использования всех api из botx-api
1
2
3
4
5
6
7
8
9
10
FROM rust:1.67

WORKDIR /usr/src/bot-api-example
COPY . .

RUN rustup default nightly

RUN cargo install --path .

CMD ["bot-api-example"]