mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
go fmt
This commit is contained in:
parent
6daa932f5c
commit
3575d41009
|
@ -1,10 +1,10 @@
|
||||||
package postgres
|
package postgres
|
||||||
|
|
||||||
import (
|
import (
|
||||||
`fmt`
|
"fmt"
|
||||||
|
|
||||||
`github.com/chrislusf/seaweedfs/weed/filer/abstract_sql`
|
"github.com/chrislusf/seaweedfs/weed/filer/abstract_sql"
|
||||||
_ `github.com/lib/pq`
|
_ "github.com/lib/pq"
|
||||||
)
|
)
|
||||||
|
|
||||||
type SqlGenPostgres struct {
|
type SqlGenPostgres struct {
|
||||||
|
|
|
@ -68,7 +68,7 @@ func (d *DiskUsages) ToMap() interface{} {
|
||||||
return ret
|
return ret
|
||||||
}
|
}
|
||||||
|
|
||||||
func (d *DiskUsages) ToDiskInfo() (map[string]*master_pb.DiskInfo) {
|
func (d *DiskUsages) ToDiskInfo() map[string]*master_pb.DiskInfo {
|
||||||
ret := make(map[string]*master_pb.DiskInfo)
|
ret := make(map[string]*master_pb.DiskInfo)
|
||||||
for diskType, diskUsageCounts := range d.usages {
|
for diskType, diskUsageCounts := range d.usages {
|
||||||
m := &master_pb.DiskInfo{
|
m := &master_pb.DiskInfo{
|
||||||
|
|
Loading…
Reference in a new issue