Skip to content

Commit

Permalink
chore: empty file for now
Browse files Browse the repository at this point in the history
  • Loading branch information
Yakiyo committed Jul 30, 2023
1 parent 5f11a05 commit 2d1356f
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions script/generate.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
/*
* This is a script that auto generates a json file containing all
* versions of the dart sdk from the api. Creating a pre-generated
* json file reduces the need to make a req to the api everytime.
*
* This process should be automated in some sort of way, for example
* using github action's cron jobs
*
* Run the script from the root
* ```
* go run script/generate.go
*
* # or use just
* just gen
* ```
*/

package main

import "fmt"

func main() {
fmt.Println("Hello World")
}

0 comments on commit 2d1356f

Please sign in to comment.