repo.or.cz
/
yt-mango.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Move work command
[yt-mango.git]
/
cmd
/
video.go
blob
495802294daa3184c8eb86afa6f26848b5fcf70a
1
package
cmd
2
3
import
"github.com/spf13/cobra"
4
5
var
Video
=
cobra
.
Command
{
6
Use
:
"video"
,
7
Short
:
"Get information about a video"
,
8
}
9
10
func
init
() {
11
Video
.
AddCommand
(&
videoDetailCmd
)
12
}