Files
governance-demo/internal/payment/payment.go
T
reynold ff97cad216 feat: seed Lariza feature demonstration
Add synthetic fixtures and proposed policy contracts for safely demonstrating future Lariza capabilities.

Assisted-by: Codex: GPT-5.6
2026-07-18 20:21:36 +08:00

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)
}