This commit is contained in:
Liang Ding 2014-08-18 21:51:03 +08:00
parent 792a3db187
commit 4faae9784e
7 changed files with 15 additions and 15 deletions

View File

@ -23,9 +23,9 @@ A simple <b>W</b>eb **IDE** for golang.
## License ##
Copyright (c) 2014, Liang Ding (http://88250.b3log.org)
Copyright (c) 2014, B3log Team (http://b3log.org)
Licensed under the [Apache License 2.0](https://github.com/88250/wide/blob/master/LICENSE).
Licensed under the [Apache License 2.0](https://github.com/b3log/wide/blob/master/LICENSE).
## Credits ##

View File

@ -3,7 +3,7 @@ package conf
import (
"encoding/json"
"flag"
"github.com/88250/wide/util"
"github.com/b3log/wide/util"
"github.com/golang/glog"
"io/ioutil"
"os"

View File

@ -3,8 +3,8 @@ package editor
import (
"bytes"
"encoding/json"
"github.com/88250/wide/session"
"github.com/88250/wide/util"
"github.com/b3log/wide/session"
"github.com/b3log/wide/util"
"github.com/golang/glog"
"github.com/gorilla/websocket"
"net/http"

View File

@ -2,7 +2,7 @@ package file
import (
"encoding/json"
"github.com/88250/wide/conf"
"github.com/b3log/wide/conf"
"github.com/golang/glog"
"io/ioutil"
"net/http"

12
main.go
View File

@ -5,12 +5,12 @@ package main
//
import (
"github.com/88250/wide/conf"
"github.com/88250/wide/editor"
"github.com/88250/wide/file"
"github.com/88250/wide/output"
"github.com/88250/wide/session"
"github.com/88250/wide/shell"
"github.com/b3log/wide/conf"
"github.com/b3log/wide/editor"
"github.com/b3log/wide/file"
"github.com/b3log/wide/output"
"github.com/b3log/wide/session"
"github.com/b3log/wide/shell"
"github.com/golang/glog"
"html/template"
"math/rand"

View File

@ -2,7 +2,7 @@ package output
import (
"encoding/json"
"github.com/88250/wide/session"
"github.com/b3log/wide/session"
"github.com/golang/glog"
"github.com/gorilla/websocket"
"io"

View File

@ -1,8 +1,8 @@
package shell
import (
"github.com/88250/wide/conf"
"github.com/88250/wide/session"
"github.com/b3log/wide/conf"
"github.com/b3log/wide/session"
"github.com/golang/glog"
"github.com/gorilla/websocket"
"net/http"