18 lines
317 B
Go
18 lines
317 B
Go
|
package forgepb_test
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
)
|
||
|
|
||
|
// --- Package examples ---
|
||
|
|
||
|
// This example is copied from rill to understand golang docs
|
||
|
func Example() {
|
||
|
fmt.Println("nothing here yet")
|
||
|
}
|
||
|
|
||
|
// This example is copied from rill to understand golang docs
|
||
|
func Example_batching() {
|
||
|
fmt.Println("nothing batching here yet")
|
||
|
}
|