This commit is contained in:
parent
792a3db187
commit
4faae9784e
|
@ -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 ##
|
||||
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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
12
main.go
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue