diff options
| author | DanielGavin <danielgavin5@hotmail.com> | 2020-11-05 00:29:52 +0100 |
|---|---|---|
| committer | DanielGavin <danielgavin5@hotmail.com> | 2020-11-05 00:29:52 +0100 |
| commit | e96f06d2e2bb9cc992870a12642c8dcf0145d98b (patch) | |
| tree | c9b8cc17804ec064f6fd822f05b96316fd67bd21 /src/main.odin | |
| parent | a66271230ffa3c4e3eb452d6037ffdc69b2b37c0 (diff) | |
started working on loading in all the sibling files in the same package
Diffstat (limited to 'src/main.odin')
| -rw-r--r-- | src/main.odin | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/main.odin b/src/main.odin index e388be5..382fd31 100644 --- a/src/main.odin +++ b/src/main.odin @@ -27,6 +27,11 @@ run :: proc(reader: ^Reader, writer: ^Writer) { config: Config; + //temporary collections being set manually, need to get client configuration set up. + config.collections = make(map [string] string); + + config.collections["core"] = "C:/Users/danie/OneDrive/Desktop/Computer_Science/Odin/core"; + log.info("Starting Odin Language Server"); running = true; |