Golang packaging: Difference between revisions

From wikinotes
No edit summary
Line 1: Line 1:
= Within Module =
= Module Requirements =
<blockquote>
<blockquote>
<syntaxhighlight lang="bash">
See [[go.mod file]] .
go get golang.org/x/text  # adds requirement to 'go.mod'
</blockquote><!-- Module Requirements -->
</syntaxhighlight>
</blockquote><!-- Within Module -->

Revision as of 19:43, 23 May 2022

Module Requirements

See go.mod file .