NoIssue: Add NenjimJournalId

This commit is contained in:
2026-02-06 16:30:25 +01:00
parent 1cc39517e9
commit 69c920fbf4
3 changed files with 9 additions and 6 deletions

View File

@@ -29,6 +29,7 @@ repositories {
dependencies {
implementation("org.jetbrains:annotations:26.0.2-1")
implementation("com.r35157.libs:valuetypes-basic-api:0.1-dev")
}
java {

View File

@@ -0,0 +1,8 @@
package com.r35157.nenjim.valuetypes;
import org.jetbrains.annotations.NotNull;
import com.r35157.libs.valuetypes.basic.Id;
public record NenjimJournalId(
@NotNull String value
) implements Id {}

View File

@@ -1,6 +0,0 @@
package com.r35157.nenjim.valuetypes;
public interface SomeInterface {
String concat(String x, String y);
void divideByZero() throws ArithmeticException;
}