tangled
alpha
login
or
join now
altagos.dev
/
space
0
fork
atom
A SpaceTraders Agent
0
fork
atom
overview
issues
pulls
pipelines
run all tests
altagos.dev
4 months ago
0234dd57
a34a381e
verified
This commit was signed with the committer's
known signature
.
altagos.dev
SSH Key Fingerprint:
SHA256:UbTjEcCZlc6GzQWLCuDK3D//HESWD2xFPkzue9XMras=
+15
3 changed files
expand all
collapse all
unified
split
src
agent
root.zig
meta
root.zig
st
root.zig
+5
src/agent/root.zig
···
1
1
pub const config = @import("config.zig");
2
2
+
3
3
+
test {
4
4
+
const testing = @import("std").testing;
5
5
+
testing.refAllDeclsRecursive(@This());
6
6
+
}
+5
src/meta/root.zig
···
35
35
.fields = &combined,
36
36
} });
37
37
}
38
38
+
39
39
+
test {
40
40
+
const testing = @import("std").testing;
41
41
+
testing.refAllDeclsRecursive(@This());
42
42
+
}
+5
src/st/root.zig
···
2
2
pub const models = @import("models.zig");
3
3
4
4
pub const fleet = @import("fleet.zig");
5
5
+
6
6
+
test {
7
7
+
const testing = @import("std").testing;
8
8
+
testing.refAllDeclsRecursive(@This());
9
9
+
}