mirror of
https://github.com/ClusterCockpit/cc-backend
synced 2024-11-10 08:57:25 +01:00
21 lines
384 B
Go
21 lines
384 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
|
||
|
|
||
|
const tagType = "app"
|
||
|
|
||
|
type appInfo struct {
|
||
|
tag string
|
||
|
strings []string
|
||
|
}
|
||
|
type AppTagger struct {
|
||
|
apps []appInfo
|
||
|
}
|
||
|
|
||
|
func (t *AppTagger) Register() error {
|
||
|
|
||
|
return nil
|
||
|
}
|