1// SPDX-FileCopyrightText: 2026 Romain Maneschi <romain@gitroot.dev>
2//
3// SPDX-License-Identifier: MIT
4
5package model
6
7type InitKind string
8
9const (
10 InitKindConfHasChange InitKind = "confhaschange"
11 InitKindDiff InitKind = "diff"
12 InitKindSchedule InitKind = "schedule"
13 InitKindFuncCall InitKind = "funccall"
14)