dotemacs

My Emacs configuration
git clone git://git.entf.net/dotemacs
Log | Files | Refs | LICENSE

go.mod (289B)


      1 module my/thing
      2 
      3 // comment
      4 go 1.12
      5 
      6 require other/thing v1.0.2
      7 require new/thing/v2 v2.3.4
      8 exclude old/thing v1.2.3
      9 replace bad/thing v1.4.5 => good/thing v1.4.5
     10 
     11 require (
     12 	// comment inside block
     13 	new/thing v2.3.4
     14 	old/thing v1.2.3
     15 )
     16 
     17 replace (
     18 	bad/thing v1.4.5 => good/thing v1.4.5
     19 )