File: tools.go

package info (click to toggle)
kind 0.27.0-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 4,384 kB
  • sloc: sh: 1,901; makefile: 97; javascript: 55; xml: 9
file content (13 lines) | stat: -rw-r--r-- 263 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
//go:build tools
// +build tools

/*
Package site is used to track binary dependencies with go modules
https://github.com/golang/go/wiki/Modules#how-can-i-track-tool-dependencies-for-a-module
Namely: hugo
*/
package site

import (
	_ "github.com/gohugoio/hugo"
)