Skip to content

Commit

Permalink
Oops! missed a couple of spots for imports (#14)
Browse files Browse the repository at this point in the history
Change-Id: I15df1293ff1ab875cfffc25fd60c0dd0508de2d1
  • Loading branch information
dims committed Nov 13, 2018
1 parent 8139d8c commit a5bc97f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/coexist_glog/coexist_glog.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ package main

import (
"flag"
"github.com/dims/klog"
"github.com/golang/glog"
"k8s.io/klog"
)

type glogWriter struct{}
Expand Down
2 changes: 1 addition & 1 deletion examples/log_file/usage_log_file.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package main

import (
"flag"
"github.com/dims/klog"
"k8s.io/klog"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion examples/set_output/usage_set_output.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"bytes"
"flag"
"fmt"
"github.com/dims/klog"
"k8s.io/klog"
)

func main() {
Expand Down

0 comments on commit a5bc97f

Please sign in to comment.