Initial commit
This commit is contained in:
2
.gitignore
vendored
2
.gitignore
vendored
@ -24,3 +24,5 @@ docs/
|
||||
# Code coverage
|
||||
*.lst
|
||||
|
||||
# Program Database
|
||||
*.pdb
|
||||
|
||||
3
dscanner.ini
Normal file
3
dscanner.ini
Normal file
@ -0,0 +1,3 @@
|
||||
[analysis.config.StaticAnalysisConfig]
|
||||
number_style_check="disabled"
|
||||
long_line_check="disabled"
|
||||
6
dub.sdl
Normal file
6
dub.sdl
Normal file
@ -0,0 +1,6 @@
|
||||
name "thirdworld-login"
|
||||
description "Implementation of Two Worlds II login."
|
||||
authors "Maxwell Ruben"
|
||||
copyright "Copyright © 2026, Maxwell Ruben"
|
||||
license "MIT"
|
||||
dependency "thirdworld-common" repository="git+https://git.mxruben.com/thirdworld/thirdworld-common" version="7400f13c68befa4bfd2b78bcdc4ae67a417cafd7"
|
||||
13
dub.selections.json
Normal file
13
dub.selections.json
Normal file
@ -0,0 +1,13 @@
|
||||
{
|
||||
"fileVersion": 1,
|
||||
"versions": {
|
||||
"during": "0.3.0",
|
||||
"eventcore": "0.9.39",
|
||||
"silly": "1.1.1",
|
||||
"stdx-allocator": "2.77.5",
|
||||
"taggedalgebraic": "1.0.1",
|
||||
"thirdworld-common": {"version":"7400f13c68befa4bfd2b78bcdc4ae67a417cafd7","repository":"git+https://git.mxruben.com/thirdworld/thirdworld-common"},
|
||||
"vibe-container": "1.7.1",
|
||||
"vibe-core": "2.14.0"
|
||||
}
|
||||
}
|
||||
5
source/main.d
Normal file
5
source/main.d
Normal file
@ -0,0 +1,5 @@
|
||||
import thirdworld.common.log;
|
||||
|
||||
void main() {
|
||||
logInfo("Test");
|
||||
}
|
||||
Reference in New Issue
Block a user