1// Copyright (c) 2022 Gitpod GmbH. All rights reserved. 2// Licensed under the GNU Affero General Public License (AGPL). 3// See License.AGPL.txt in the project root for license information. 4 5package scheduler 6 7type Job interface { 8 Run() error 9} 10 11type JobFunc func() error 12 13func (f JobFunc) Run() error { 14 return f() 15} 16 17