67 changed files with 138 additions and 124 deletions
@ -0,0 +1,14 @@ |
|||
# Package dependency |
|||
|
|||
``` |
|||
main |
|||
├── bin |
|||
├── pkg |
|||
├── src |
|||
│ ├── github.com |
|||
│ ├── golang.org |
|||
│ ├── tank |
|||
│ │ ├── build |
|||
│ │ │ ├── conf |
|||
│ │ │ ├── doc |
|||
``` |
|||
@ -1,12 +1,12 @@ |
|||
package rest |
|||
package code |
|||
|
|||
import ( |
|||
"fmt" |
|||
"net/http" |
|||
"regexp" |
|||
"strconv" |
|||
"tank/rest/result" |
|||
"tank/rest/tool" |
|||
"tank/code/result" |
|||
"tank/code/tool" |
|||
"time" |
|||
) |
|||
|
|||
@ -1,10 +1,10 @@ |
|||
package rest |
|||
package code |
|||
|
|||
import ( |
|||
"fmt" |
|||
"net/http" |
|||
"tank/rest/result" |
|||
"tank/rest/tool" |
|||
"tank/code/result" |
|||
"tank/code/tool" |
|||
"time" |
|||
) |
|||
|
|||
@ -1,11 +1,11 @@ |
|||
package rest |
|||
package code |
|||
|
|||
import ( |
|||
"fmt" |
|||
"github.com/json-iterator/go" |
|||
"go/types" |
|||
"net/http" |
|||
"tank/rest/result" |
|||
"tank/code/result" |
|||
) |
|||
|
|||
type IController interface { |
|||
@ -1,4 +1,4 @@ |
|||
package rest |
|||
package code |
|||
|
|||
type BaseDao struct { |
|||
Bean |
|||
@ -1,9 +1,9 @@ |
|||
package rest |
|||
package code |
|||
|
|||
import ( |
|||
"math" |
|||
"reflect" |
|||
"tank/rest/config" |
|||
"tank/code/config" |
|||
"time" |
|||
) |
|||
|
|||
@ -1,11 +1,11 @@ |
|||
package rest |
|||
package code |
|||
|
|||
import ( |
|||
"net/http" |
|||
"tank/rest/config" |
|||
"tank/rest/logger" |
|||
"tank/rest/result" |
|||
"tank/rest/tool" |
|||
"tank/code/config" |
|||
"tank/code/logger" |
|||
"tank/code/result" |
|||
"tank/code/tool" |
|||
) |
|||
|
|||
type IBean interface { |
|||
@ -1,12 +1,12 @@ |
|||
package rest |
|||
package code |
|||
|
|||
import ( |
|||
"fmt" |
|||
"github.com/jinzhu/gorm" |
|||
"reflect" |
|||
"tank/rest/cache" |
|||
"tank/rest/config" |
|||
"tank/rest/logger" |
|||
"tank/code/cache" |
|||
"tank/code/config" |
|||
"tank/code/logger" |
|||
) |
|||
|
|||
//全局唯一的上下文(在main函数中初始化)
|
|||
@ -1,9 +1,9 @@ |
|||
package rest |
|||
package code |
|||
|
|||
import ( |
|||
"net/http" |
|||
"strconv" |
|||
"tank/rest/result" |
|||
"tank/code/result" |
|||
) |
|||
|
|||
type DashboardController struct { |
|||
@ -1,4 +1,4 @@ |
|||
package rest |
|||
package code |
|||
|
|||
import ( |
|||
"github.com/jinzhu/gorm" |
|||
@ -1,6 +1,6 @@ |
|||
package rest |
|||
package code |
|||
|
|||
import "tank/rest/config" |
|||
import "tank/code/config" |
|||
|
|||
/** |
|||
* 系统的所有访问记录均记录在此 |
|||
@ -1,7 +1,7 @@ |
|||
package rest |
|||
package code |
|||
|
|||
import ( |
|||
"tank/rest/tool" |
|||
"tank/code/tool" |
|||
"time" |
|||
) |
|||
|
|||
@ -1,12 +1,12 @@ |
|||
package rest |
|||
package code |
|||
|
|||
import ( |
|||
"fmt" |
|||
"net/http" |
|||
"path" |
|||
"strconv" |
|||
"tank/rest/dav" |
|||
"tank/rest/dav/xml" |
|||
"tank/code/dav" |
|||
"tank/code/dav/xml" |
|||
) |
|||
|
|||
//访问前缀,这个是特殊入口
|
|||
@ -1,4 +1,4 @@ |
|||
package rest |
|||
package code |
|||
|
|||
import ( |
|||
|
|||
@ -1,7 +1,7 @@ |
|||
package rest |
|||
package code |
|||
|
|||
import ( |
|||
"tank/rest/config" |
|||
"tank/code/config" |
|||
"time" |
|||
) |
|||
|
|||
@ -1,9 +1,9 @@ |
|||
package rest |
|||
package code |
|||
|
|||
import ( |
|||
"net/http" |
|||
"strconv" |
|||
"tank/rest/result" |
|||
"tank/code/result" |
|||
) |
|||
|
|||
type FootprintController struct { |
|||
@ -1,4 +1,4 @@ |
|||
package rest |
|||
package code |
|||
|
|||
import ( |
|||
"github.com/jinzhu/gorm" |
|||
@ -1,6 +1,6 @@ |
|||
package rest |
|||
package code |
|||
|
|||
import "tank/rest/config" |
|||
import "tank/code/config" |
|||
|
|||
/** |
|||
* 系统的所有访问记录均记录在此 |
|||
@ -1,10 +1,10 @@ |
|||
package rest |
|||
package code |
|||
|
|||
import ( |
|||
"encoding/json" |
|||
"net/http" |
|||
"tank/rest/config" |
|||
"tank/rest/tool" |
|||
"tank/code/config" |
|||
"tank/code/tool" |
|||
"time" |
|||
) |
|||
|
|||
@ -1,10 +1,10 @@ |
|||
package rest |
|||
package code |
|||
|
|||
import ( |
|||
"net/http" |
|||
"strconv" |
|||
"strings" |
|||
"tank/rest/result" |
|||
"tank/code/result" |
|||
) |
|||
|
|||
type ImageCacheController struct { |
|||
@ -1,7 +1,7 @@ |
|||
package rest |
|||
package code |
|||
|
|||
import ( |
|||
"tank/rest/config" |
|||
"tank/code/config" |
|||
) |
|||
|
|||
/** |
|||
@ -1,4 +1,4 @@ |
|||
package rest |
|||
package code |
|||
|
|||
import "github.com/jinzhu/gorm" |
|||
|
|||
@ -1,10 +1,10 @@ |
|||
package rest |
|||
package code |
|||
|
|||
import ( |
|||
"net/http" |
|||
"strconv" |
|||
"strings" |
|||
"tank/rest/result" |
|||
"tank/code/result" |
|||
) |
|||
|
|||
type MatterController struct { |
|||
@ -1,12 +1,12 @@ |
|||
package rest |
|||
package code |
|||
|
|||
import ( |
|||
"github.com/jinzhu/gorm" |
|||
"github.com/nu7hatch/gouuid" |
|||
"os" |
|||
"tank/rest/config" |
|||
"tank/rest/result" |
|||
"tank/rest/tool" |
|||
"tank/code/config" |
|||
"tank/code/result" |
|||
"tank/code/tool" |
|||
"time" |
|||
) |
|||
|
|||
@ -1,9 +1,9 @@ |
|||
package rest |
|||
package code |
|||
|
|||
import ( |
|||
"fmt" |
|||
"tank/rest/config" |
|||
"tank/rest/tool" |
|||
"tank/code/config" |
|||
"tank/code/tool" |
|||
) |
|||
|
|||
const ( |
|||
@ -1,9 +1,9 @@ |
|||
package rest |
|||
package code |
|||
|
|||
import ( |
|||
"net/http" |
|||
"tank/rest/result" |
|||
"tank/rest/tool" |
|||
"tank/code/result" |
|||
"tank/code/tool" |
|||
) |
|||
|
|||
type PreferenceController struct { |
|||
@ -1,8 +1,8 @@ |
|||
package rest |
|||
package code |
|||
|
|||
import ( |
|||
"github.com/nu7hatch/gouuid" |
|||
"tank/rest/result" |
|||
"tank/code/result" |
|||
"time" |
|||
) |
|||
|
|||
@ -1,6 +1,6 @@ |
|||
package rest |
|||
package code |
|||
|
|||
import "tank/rest/config" |
|||
import "tank/code/config" |
|||
|
|||
type Preference struct { |
|||
Base |
|||
@ -1,4 +1,4 @@ |
|||
package rest |
|||
package code |
|||
|
|||
//@Service
|
|||
type PreferenceService struct { |
|||
@ -1,4 +1,4 @@ |
|||
package rest |
|||
package code |
|||
|
|||
import ( |
|||
|
|||
@ -1,7 +1,7 @@ |
|||
package rest |
|||
package code |
|||
|
|||
import ( |
|||
"tank/rest/config" |
|||
"tank/code/config" |
|||
"time" |
|||
) |
|||
|
|||
@ -1,4 +1,4 @@ |
|||
package rest |
|||
package code |
|||
|
|||
//@Service
|
|||
type SessionService struct { |
|||
@ -1,4 +1,4 @@ |
|||
package rest |
|||
package code |
|||
|
|||
type OrderPair struct { |
|||
key string |
|||
@ -1,4 +1,4 @@ |
|||
package rest |
|||
package code |
|||
|
|||
import ( |
|||
|
|||
@ -1,7 +1,7 @@ |
|||
package rest |
|||
package code |
|||
|
|||
import ( |
|||
"tank/rest/config" |
|||
"tank/code/config" |
|||
"time" |
|||
) |
|||
|
|||
@ -1,12 +1,12 @@ |
|||
package rest |
|||
package code |
|||
|
|||
import ( |
|||
"net/http" |
|||
"regexp" |
|||
"strconv" |
|||
"tank/rest/config" |
|||
"tank/rest/result" |
|||
"tank/rest/tool" |
|||
"tank/code/config" |
|||
"tank/code/result" |
|||
"tank/code/tool" |
|||
|
|||
"time" |
|||
) |
|||
@ -1,4 +1,4 @@ |
|||
package rest |
|||
package code |
|||
|
|||
import ( |
|||
"github.com/nu7hatch/gouuid" |
|||
@ -1,7 +1,7 @@ |
|||
package rest |
|||
package code |
|||
|
|||
import ( |
|||
"tank/rest/config" |
|||
"tank/code/config" |
|||
"time" |
|||
) |
|||
|
|||
@ -1,10 +1,10 @@ |
|||
package rest |
|||
package code |
|||
|
|||
import ( |
|||
"net/http" |
|||
"tank/rest/cache" |
|||
"tank/rest/config" |
|||
"tank/rest/result" |
|||
"tank/code/cache" |
|||
"tank/code/config" |
|||
"tank/code/result" |
|||
"time" |
|||
) |
|||
|
|||
Loading…
Reference in new issue