File: main.go

package info (click to toggle)
debpkg 0.0.1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 80 kB
  • sloc: makefile: 33
file content (13 lines) | stat: -rw-r--r-- 140 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
package main

import (
	"os"

	"salsa.debian.org/otto/debpkg/cmd"
)

func main() {
	if err := cmd.Execute(); err != nil {
		os.Exit(1)
	}
}