Merge pull request #2 from L11R/master

go fmt formatted project
This commit is contained in:
Aleksandr Zelenin 2018-10-23 17:05:23 +03:00 committed by GitHub
commit 4fbb5dd875
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
23 changed files with 21168 additions and 21168 deletions

View file

@ -16,3 +16,4 @@ generate-code:
-functionFile function.go \
-typeFile type.go \
-unmarshalerFile unmarshaler.go
go fmt ./...

View file

@ -20350,4 +20350,3 @@ func (*TestVectorStringObject) GetClass() string {
func (*TestVectorStringObject) GetType() string {
return TypeTestVectorStringObject
}

View file

@ -8,8 +8,8 @@ import (
"os"
"path/filepath"
"github.com/zelenin/go-tdlib/tlparser"
"github.com/zelenin/go-tdlib/codegen"
"github.com/zelenin/go-tdlib/tlparser"
)
type config struct {

View file

@ -4,12 +4,12 @@ import (
"bufio"
"encoding/json"
"flag"
"github.com/zelenin/go-tdlib/tlparser"
"log"
"net/http"
"os"
"path/filepath"
"strings"
"github.com/zelenin/go-tdlib/tlparser"
)
func main() {

View file

@ -2,8 +2,8 @@ package codegen
import (
"github.com/zelenin/go-tdlib/tlparser"
"strings"
"log"
"strings"
)
type tdlibFunction struct {

View file

@ -1,9 +1,9 @@
package codegen
import (
"github.com/zelenin/go-tdlib/tlparser"
"fmt"
"bytes"
"fmt"
"github.com/zelenin/go-tdlib/tlparser"
)
func GenerateUnmarshalers(schema *tlparser.Schema, packageName string) []byte {

View file

@ -1,9 +1,9 @@
package tlparser
import (
"bufio"
"io"
"strings"
"bufio"
)
func Parse(reader io.Reader) (*Schema, error) {