Skip to content
This repository has been archived by the owner on Apr 5, 2023. It is now read-only.

Commit

Permalink
moved
Browse files Browse the repository at this point in the history
  • Loading branch information
andboson committed Jul 10, 2015
1 parent d37d379 commit 2cd134d
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 13 deletions.
Binary file modified ab-go
Binary file not shown.
8 changes: 4 additions & 4 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ package main

import (
"fmt"
"ab-go/service"
"ab-go/requests"
"ab-go/templates"
"github.com/andboson/ab-go/service"
"github.com/andboson/ab-go/requests"
"github.com/andboson/ab-go/templates"
"os/exec"
"os"
"ab-go/server"
"github.com/andboson/ab-go/server"
"time"
)

Expand Down
2 changes: 1 addition & 1 deletion requests/dispatcher.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"os"
"bufio"
"net/http"
"ab-go/service"
"github.com/andboson/ab-go/service"
"math"
"fmt"
)
Expand Down
4 changes: 2 additions & 2 deletions server/sendresults.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package server
import (
"ab-go/requests"
"github.com/andboson/ab-go/requests"
"bytes"
"net/http"
"log"
Expand All @@ -9,7 +9,7 @@ import (
"encoding/json"
"net/url"
"fmt"
"ab-go/templates"
"github.com/andboson/ab-go/templates"
)

type Message struct {
Expand Down
6 changes: 3 additions & 3 deletions server/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ import (
"net/http"
"time"
"github.com/gorilla/websocket"
"ab-go/requests"
"ab-go/bindata"
"ab-go/service"
"github.com/andboson/ab-go/requests"
"github.com/andboson/ab-go/bindata"
"github.com/andboson/ab-go/service"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion templates/formatter.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package templates
import (
"ab-go/requests"
"github.com/andboson/ab-go/requests"
"fmt"
)

Expand Down
4 changes: 2 additions & 2 deletions tests/services_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ package tests

import (
"testing"
"ab-go/service"
"ab-go/requests"
"github.com/andboson/ab-go/service"
"github.com/andboson/ab-go/requests"
)

func TestReadUrls(t *testing.T){
Expand Down

0 comments on commit 2cd134d

Please sign in to comment.