go.chromium.org/luci@v0.0.0-20240309015107-7cdc2e660f33/luci_notify/api/config/settings.proto (about) 1 // Copyright 2017 The LUCI Authors. All rights reserved. 2 // Use of this source code is governed under the Apache License, Version 2.0 3 // that can be found in the LICENSE file. 4 5 // Service-level configuration for luci-notify. 6 7 syntax = "proto3"; 8 9 package notify; 10 11 option go_package = "go.chromium.org/luci/luci_notify/api/config"; 12 13 // Settings is the top-level configuration message. 14 message Settings { 15 // MiloHost is the hostname of the Milo instance luci-notify queries for 16 // additional build information. 17 // 18 // Required. 19 string milo_host = 1; 20 21 // luci_tree_status_host is the hostname of the LUCI tree status app 22 // to use for closing and opening trees. 23 // 24 // e.g. luci-tree-status.appspot.com 25 // 26 // Required. 27 string luci_tree_status_host = 2; 28 }