oysteikt/wiki-math-bot
oysteikt
/
wiki-math-bot
Archived
1
0
Fork 0
This repository has been archived on 2024-07-04. You can view files and clone it, but cannot push or open issues or pull requests.
wiki-math-bot/src/Bot/Config.fs

14 lines
349 B
Forth

namespace Bot
module Config =
open System.IO
open Microsoft.Extensions.Configuration
let private getConfig =
let builder = new ConfigurationBuilder()
do builder.SetBasePath( Directory.GetCurrentDirectory() + "/../../data" ) |> ignore
do builder.AddJsonFile("config.json") |> ignore
builder.Build()
let config = getConfig