Skip to content

Unofficial open source telegram server written in golang

License

Notifications You must be signed in to change notification settings

waterem/telegramd

Repository files navigation

telegramd

Chinese

简介

Go语言开源mtproto服务器,兼容telegram客户端

编译

首先,我们假设您已经有基本的golang基础,至少知道GOROOT,GOPATH这些概念。

下载代码

mkdir $GOPATH/src/github.com/nebulaim/
cd $GOPATH/src/github.com/nebulaim/
git clone https://github.com/nebulaim/telegramd.git

编译代码

编译frontend

cd $GOPATH/src/github.com/nebulaim/telegramd/access/frontend
go get
go build

编译auth_key

cd $GOPATH/src/github.com/nebulaim/telegramd/access/auth_key
go get
go build

编译session

cd $GOPATH/src/github.com/nebulaim/telegramd/access/session_server
go get
go build

编译sync_server

cd $GOPATH/src/github.com/nebulaim/telegramd/sync_server
go get
go build

编译biz_server

cd $GOPATH/src/github.com/nebulaim/telegramd/biz_server
go get
go build

运行

cd $GOPATH/src/github.com/nebulaim/telegramd/access/frontend
./frontend

cd $GOPATH/src/github.com/nebulaim/telegramd/access/auth_key
./auth_key

cd $GOPATH/src/github.com/nebulaim/telegramd/access/session_server
./session_server

cd $GOPATH/src/github.com/nebulaim/telegramd/sync_server
./sync_server

cd $GOPATH/src/github.com/nebulaim/telegramd/biz_server
./biz_server

English

Introduce

open source mtproto server implement by golang, which compatible telegram client.

Compile

About

Unofficial open source telegram server written in golang

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Go 99.6%
  • Other 0.4%