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 ## ## 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 ## ## Credits ##

View File

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

View File

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

View File

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

12
main.go
View File

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

View File

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

View File

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