10 lines
119 B
Go
10 lines
119 B
Go
|
// +build !solution
|
||
|
|
||
|
package foolsday3
|
||
|
|
||
|
import "context"
|
||
|
|
||
|
func lambda(ctx context.Context) interface{} {
|
||
|
return nil
|
||
|
}
|