mirror of
https://github.com/ClusterCockpit/cc-backend
synced 2024-11-10 08:57:25 +01:00
18 lines
368 B
Go
18 lines
368 B
Go
// Copyright (C) 2023 NHR@FAU, University Erlangen-Nuremberg.
|
|
// All rights reserved.
|
|
// Use of this source code is governed by a MIT-style
|
|
// license that can be found in the LICENSE file.
|
|
package tagger
|
|
|
|
import "github.com/ClusterCockpit/cc-backend/pkg/schema"
|
|
|
|
type Tagger interface {
|
|
Register() error
|
|
Match(job *schema.Job)
|
|
}
|
|
|
|
func Init() error {
|
|
|
|
return nil
|
|
}
|