2023-06-04 22:58:07 +02:00
|
|
|
TAG := 93c42f6d7c1209937431469f80427d48907f1b8d
|
2021-10-22 16:24:12 +02:00
|
|
|
|
|
|
|
schema-update:
|
|
|
|
curl https://raw.githubusercontent.com/tdlib/td/${TAG}/td/generate/scheme/td_api.tl 2>/dev/null > ./data/td_api.tl
|
|
|
|
|
|
|
|
generate-json:
|
|
|
|
go run ./cmd/generate-json.go \
|
|
|
|
-version "${TAG}" \
|
|
|
|
-output "./data/td_api.json"
|
|
|
|
|
|
|
|
generate-code:
|
|
|
|
go run ./cmd/generate-code.go \
|
|
|
|
-version "${TAG}" \
|
|
|
|
-outputDir "./client" \
|
|
|
|
-package client \
|
|
|
|
-functionFile function.go \
|
|
|
|
-typeFile type.go \
|
|
|
|
-unmarshalerFile unmarshaler.go
|
|
|
|
go fmt ./...
|