v0.18.0: Run() instead Connect()
BREAKING: Now Connect method is removed, use following:
client := telegram.NewClient(1, "appHash", telegram.Options{})
client.Run(ctx, func(ctx context.Context) error {
// Client is ready, function return closes client.
return nil
})