This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import ArgumentParser | |
| import Foundation | |
| import FoundationModels | |
| @main | |
| struct JazzCommand: AsyncParsableCommand { | |
| static var configuration = CommandConfiguration( | |
| commandName: "jazz", | |
| abstract: "A CLI tool to interpret shell tasks as natural language instructions." | |
| ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Account ID | |
| variable "cloudflare_account_id" { | |
| type = string | |
| default = "" | |
| } | |
| # An R2 bucket | |
| resource "cloudflare_r2_bucket" "this" { | |
| account_id = var.cloudflare_account_id | |
| name = "bucket" |