Commit 4418a9ab authored by Mo Firouz's avatar Mo Firouz
Browse files

Reorder imports.

parent e222a573
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -5,10 +5,11 @@ package api

import (
	fmt "fmt"
	math "math"

	proto "github.com/golang/protobuf/proto"
	timestamp "github.com/golang/protobuf/ptypes/timestamp"
	wrappers "github.com/golang/protobuf/ptypes/wrappers"
	math "math"
)

// Reference imports to suppress errors if they are not otherwise used.
+2 −1
Original line number Diff line number Diff line
@@ -5,11 +5,12 @@ package rtapi

import (
	fmt "fmt"
	math "math"

	proto "github.com/golang/protobuf/proto"
	timestamp "github.com/golang/protobuf/ptypes/timestamp"
	wrappers "github.com/golang/protobuf/ptypes/wrappers"
	api "github.com/heroiclabs/nakama/api"
	math "math"
)

// Reference imports to suppress errors if they are not otherwise used.
+1 −0
Original line number Diff line number Diff line
@@ -88,6 +88,7 @@ package runtime
import (
	"context"
	"database/sql"

	"github.com/heroiclabs/nakama/api"
	"github.com/heroiclabs/nakama/rtapi"
)
+4 −3
Original line number Diff line number Diff line
@@ -19,14 +19,15 @@ import (
	"database/sql"
	"encoding/base64"
	"fmt"
	"go.opencensus.io/stats"
	"go.opencensus.io/tag"
	"go.opencensus.io/trace"
	"net"
	"net/http"
	"strings"
	"time"

	"go.opencensus.io/stats"
	"go.opencensus.io/tag"
	"go.opencensus.io/trace"

	"github.com/heroiclabs/nakama/api"

	"google.golang.org/grpc/peer"
+2 −1
Original line number Diff line number Diff line
@@ -16,12 +16,13 @@ package server

import (
	"errors"
	"go.uber.org/zap"
	"math/rand"
	"regexp"
	"strings"
	"time"

	"go.uber.org/zap"

	"github.com/dgrijalva/jwt-go"
	"github.com/gofrs/uuid"
	"github.com/heroiclabs/nakama/api"
Loading