aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/language-semantics/src/main/java/tools/refinery/language/semantics/metadata/BuiltInDetail.java
blob: 6f706069edff9f9503a6698fdff15eb9c6a746b4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
/*
 * SPDX-FileCopyrightText: 2023 The Refinery Authors <https://refinery.tools/>
 *
 * SPDX-License-Identifier: EPL-2.0
 */
package tools.refinery.language.semantics.metadata;

public record BuiltInDetail() implements RelationDetail {
	public static final BuiltInDetail INSTANCE = new BuiltInDetail();
}