调整gtime的分类

This commit is contained in:
John
2017-12-07 10:42:37 +08:00
parent 751f5ddb9d
commit dee4941760
5 changed files with 5 additions and 4 deletions

View File

@ -49,13 +49,13 @@ import "gitee.com/johng/gf/g/xxx"
│   │   ├── gfilepool 文件指针池
│   │   ├── gfilespace 文件碎片管理
│   │   ├── glog 日志管理
│   │  ── gmmap MMAP文件内存映射
│   │── gmmap MMAP文件内存映射
│   │   └── gtime 时间管理
│   │  
│   └── util 【常用工具】
│   ├── gpage 分页
│   ├── grand 随机数
│   ├── gregx 正则表达式
│   ├── gtime 时间管理
│   └── gutil 其他工具
│  
├── geg 【框架示例】

View File

@ -3,7 +3,7 @@ package gcache
import (
"sync"
"time"
"gitee.com/johng/gf/g/util/gtime"
"gitee.com/johng/gf/g/os/gtime"
"gitee.com/johng/gf/g/encoding/ghash"
)

View File

@ -4,7 +4,7 @@ import (
"os"
"time"
"strconv"
"gitee.com/johng/gf/g/util/gtime"
"gitee.com/johng/gf/g/os/gtime"
"gitee.com/johng/gf/g/container/gmap"
"gitee.com/johng/gf/g/container/glist"
"sync/atomic"

View File

@ -4,6 +4,7 @@ import (
"sync"
"fmt"
"strconv"
"time"
)