Add synthetic fixtures and proposed policy contracts for safely demonstrating future Lariza capabilities. Assisted-by: Codex: GPT-5.6
9 lines
232 B
Go
9 lines
232 B
Go
package payment
|
|
|
|
import "fmt"
|
|
|
|
// Authorize returns a deterministic message for governance demonstrations.
|
|
func Authorize(amountMinor int64, currency string) string {
|
|
return fmt.Sprintf("authorized %d %s", amountMinor, currency)
|
|
}
|