Change imports after moving repository
This commit is contained in:
parent
261fafe804
commit
d37d40def4
|
@ -1,8 +1,8 @@
|
|||
package main
|
||||
|
||||
import (
|
||||
ricochet "github.com/special/notricochet/core"
|
||||
rpc "github.com/special/notricochet/rpc"
|
||||
ricochet "github.com/ricochet-im/ricochet-go/core"
|
||||
rpc "github.com/ricochet-im/ricochet-go/rpc"
|
||||
"google.golang.org/grpc"
|
||||
"log"
|
||||
"net"
|
||||
|
|
|
@ -2,8 +2,8 @@ package main
|
|||
|
||||
import (
|
||||
"errors"
|
||||
ricochet "github.com/special/notricochet/core"
|
||||
rpc "github.com/special/notricochet/rpc"
|
||||
ricochet "github.com/ricochet-im/ricochet-go/core"
|
||||
rpc "github.com/ricochet-im/ricochet-go/rpc"
|
||||
"golang.org/x/net/context"
|
||||
"log"
|
||||
)
|
||||
|
|
|
@ -3,7 +3,7 @@ package main
|
|||
import (
|
||||
"bytes"
|
||||
"fmt"
|
||||
rpc "github.com/special/notricochet/rpc"
|
||||
rpc "github.com/ricochet-im/ricochet-go/rpc"
|
||||
"google.golang.org/grpc"
|
||||
"gopkg.in/readline.v1"
|
||||
"log"
|
||||
|
|
|
@ -2,7 +2,7 @@ package main
|
|||
|
||||
import (
|
||||
"fmt"
|
||||
"github.com/special/notricochet/rpc"
|
||||
"github.com/ricochet-im/ricochet-go/rpc"
|
||||
"golang.org/x/net/context"
|
||||
"log"
|
||||
)
|
||||
|
|
|
@ -3,7 +3,7 @@ package main
|
|||
import (
|
||||
"errors"
|
||||
"fmt"
|
||||
"github.com/special/notricochet/rpc"
|
||||
"github.com/ricochet-im/ricochet-go/rpc"
|
||||
)
|
||||
|
||||
type ContactList struct {
|
||||
|
|
|
@ -3,7 +3,7 @@ package main
|
|||
import (
|
||||
"errors"
|
||||
"fmt"
|
||||
"github.com/special/notricochet/rpc"
|
||||
"github.com/ricochet-im/ricochet-go/rpc"
|
||||
"golang.org/x/net/context"
|
||||
"gopkg.in/readline.v1"
|
||||
"strconv"
|
||||
|
|
|
@ -42,7 +42,7 @@ type ConfigIdentity struct {
|
|||
func LoadConfig(configPath string) (*Config, error) {
|
||||
config := &Config{
|
||||
path: configPath,
|
||||
filePath: filepath.Join(configPath, "notricochet.json"),
|
||||
filePath: filepath.Join(configPath, "ricochet.json"),
|
||||
}
|
||||
|
||||
data, err := ioutil.ReadFile(config.filePath)
|
||||
|
|
|
@ -3,8 +3,8 @@ package core
|
|||
import (
|
||||
"fmt"
|
||||
protocol "github.com/s-rah/go-ricochet"
|
||||
"github.com/special/notricochet/core/utils"
|
||||
"github.com/special/notricochet/rpc"
|
||||
"github.com/ricochet-im/ricochet-go/core/utils"
|
||||
"github.com/ricochet-im/ricochet-go/rpc"
|
||||
"golang.org/x/net/context"
|
||||
"log"
|
||||
"strconv"
|
||||
|
|
|
@ -3,8 +3,8 @@ package core
|
|||
import (
|
||||
"errors"
|
||||
"fmt"
|
||||
"github.com/special/notricochet/core/utils"
|
||||
"github.com/special/notricochet/rpc"
|
||||
"github.com/ricochet-im/ricochet-go/core/utils"
|
||||
"github.com/ricochet-im/ricochet-go/rpc"
|
||||
"strconv"
|
||||
"sync"
|
||||
)
|
||||
|
|
|
@ -3,8 +3,8 @@ package core
|
|||
import (
|
||||
"errors"
|
||||
protocol "github.com/s-rah/go-ricochet"
|
||||
"github.com/special/notricochet/core/utils"
|
||||
"github.com/special/notricochet/rpc"
|
||||
"github.com/ricochet-im/ricochet-go/core/utils"
|
||||
"github.com/ricochet-im/ricochet-go/rpc"
|
||||
"log"
|
||||
"math/rand"
|
||||
"sync"
|
||||
|
|
|
@ -5,7 +5,7 @@ import (
|
|||
"encoding/base64"
|
||||
"errors"
|
||||
protocol "github.com/s-rah/go-ricochet"
|
||||
"github.com/special/notricochet/core/utils"
|
||||
"github.com/ricochet-im/ricochet-go/core/utils"
|
||||
"github.com/yawning/bulb/utils/pkcs1"
|
||||
"log"
|
||||
"sync"
|
||||
|
|
|
@ -3,8 +3,8 @@ package core
|
|||
import (
|
||||
"crypto"
|
||||
"errors"
|
||||
"github.com/special/notricochet/core/utils"
|
||||
"github.com/special/notricochet/rpc"
|
||||
"github.com/ricochet-im/ricochet-go/core/utils"
|
||||
"github.com/ricochet-im/ricochet-go/rpc"
|
||||
"github.com/yawning/bulb"
|
||||
bulbutils "github.com/yawning/bulb/utils"
|
||||
"golang.org/x/net/context"
|
||||
|
|
Loading…
Reference in New Issue