mirror of
https://github.com/dutchcoders/transfer.sh.git
synced 2024-12-04 18:00:19 +01:00
cb6e5cb0c7
* use dep for vendoring * lets encrypt * moved web to transfer.sh-web repo * single command install * added first tests
20 lines
580 B
HTML
20 lines
580 B
HTML
{{define "ROOT"}}
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
{{template "commonHead"}}
|
|
<title>go-lint</title>
|
|
</head>
|
|
<body>
|
|
<h3>Go Lint</h3>
|
|
<p>Go Lint lints <a href="http://golang.org/">Go</a> source files on GitHub,
|
|
Bitbucket and Google Project Hosting using the <a
|
|
href="https://github.com/golang/lint">lint package</a>.
|
|
<form method="POST" action="/-/refresh">
|
|
<input type="text" size=60 name="importPath" autofocus="autofocus" placeholder="Package import path">
|
|
<input value="Lint" type="submit">
|
|
</form>
|
|
{{template "commonFooter"}}
|
|
</body>
|
|
</html>
|
|
{{end}}
|