This commit is contained in:
shoopea 2019-12-29 11:03:06 +08:00
parent fe7d119a63
commit dc05afef36

View File

@ -1,20 +1,16 @@
package main
import (
"flag"
"fmt"
"log"
"sync"
"time"
"gopkg.in/gcfg.v1"
"github.com/Arman92/go-tdlib"
)
var (
ownUserID64 = int64(0)
ownUserID32 = int32(0)
chtwrsID64 = int64(408101137)
)
func main() {
@ -69,6 +65,6 @@ func main() {
ownUserID32 = OwnUserID(client)
ownUserID64 = int64(OwnUserID(client))
getHistory(client, 408101137)
getHistory(client, chtwrsID64)
}