blob: 6e02bfd0f585ee99489ff65578ddc5b8e7a97929 [file] [log] [blame]
borenetdb182c72016-09-30 12:53:12 -07001// Copyright 2016 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5package main
6
7/*
8 Generate the tasks.json file.
9*/
10
11import (
Eric Boren06920f92019-07-16 09:19:10 -040012 "go.skia.org/skia/infra/bots/gen_tasks_logic"
borenetdb182c72016-09-30 12:53:12 -070013)
14
Eric Boren58d1f762019-07-19 08:07:44 -040015// Regenerate the tasks.json file.
borenetdb182c72016-09-30 12:53:12 -070016func main() {
Eric Boren06920f92019-07-16 09:19:10 -040017 gen_tasks_logic.GenTasks(nil)
borenetdb182c72016-09-30 12:53:12 -070018}