Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
shgopher committed May 25, 2023
1 parent 1f66ded commit e0bacc5
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 6 deletions.
15 changes: 13 additions & 2 deletions example/example.go
Original file line number Diff line number Diff line change
@@ -1,10 +1,21 @@
/*
* @Author: shgopher [email protected]
* @Date: 2023-05-26 04:15:12
* @LastEditors: shgopher [email protected]
* @LastEditTime: 2023-05-26 04:33:30
* @FilePath: /short/example/example.go
* @Description:
*
* Copyright (c) 2023 by shgopher, All Rights Reserved.
*/
package main

import (
"fmt"
"github.com/golang/glog"
"github.com/googege/short"
"os"

"github.com/golang/glog"
"github.com/shgopher/short"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion hash/hash.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package hash

import (
"github.com/googege/short/base62"
"github.com/shgopher/short/base62"
"github.com/spaolacci/murmur3"
)

Expand Down
7 changes: 4 additions & 3 deletions short.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@ package short

import (
"fmt"
"github.com/googege/short/bloom"
"github.com/googege/short/hash"
qr "github.com/skip2/go-qrcode"
"path/filepath"
"sync"

"github.com/shgopher/short/bloom"
"github.com/shgopher/short/hash"
qr "github.com/skip2/go-qrcode"
)

type Node struct {
Expand Down

0 comments on commit e0bacc5

Please sign in to comment.