diff options
| -rw-r--r-- | Aamukampa.Core/Library.fs | 2 | ||||
| -rw-r--r-- | Aamukampa.Core/Types.fs | 2 | ||||
| -rw-r--r-- | Aamukampa.Frontend/App.fs | 4 | ||||
| -rw-r--r-- | Aamukampa.Web/Modules/Index.fs | 6 | ||||
| -rw-r--r-- | Aamukampa.Web/Program.fs | 2 |
5 files changed, 8 insertions, 8 deletions
diff --git a/Aamukampa.Core/Library.fs b/Aamukampa.Core/Library.fs index aa7b7ea..7856d98 100644 --- a/Aamukampa.Core/Library.fs +++ b/Aamukampa.Core/Library.fs @@ -1,4 +1,4 @@ -namespace TJLaskuri.Core +namespace Aamukampa.Core open System diff --git a/Aamukampa.Core/Types.fs b/Aamukampa.Core/Types.fs index 0c5b2d4..ba58357 100644 --- a/Aamukampa.Core/Types.fs +++ b/Aamukampa.Core/Types.fs @@ -1,4 +1,4 @@ -namespace TJLaskuri.Core +namespace Aamukampa.Core open System open System.Collections.Generic diff --git a/Aamukampa.Frontend/App.fs b/Aamukampa.Frontend/App.fs index c83ed6a..8c69d29 100644 --- a/Aamukampa.Frontend/App.fs +++ b/Aamukampa.Frontend/App.fs @@ -1,6 +1,6 @@ -open System +open System open Browser.Dom -open TJLaskuri.Core +open Aamukampa.Core DateTime.Now |> printfn "It is %O" diff --git a/Aamukampa.Web/Modules/Index.fs b/Aamukampa.Web/Modules/Index.fs index 7623779..2682028 100644 --- a/Aamukampa.Web/Modules/Index.fs +++ b/Aamukampa.Web/Modules/Index.fs @@ -1,12 +1,12 @@ -module TJLaskuri.Web.Modules.Index +module Aamukampa.Web.Modules.Index open System open Falco -open TJLaskuri.Core +open Aamukampa.Core [<AutoOpen>] module Views = - open TJLaskuri.Core.Views + open Aamukampa.Core.Views type Model = { Counter : Main.Model diff --git a/Aamukampa.Web/Program.fs b/Aamukampa.Web/Program.fs index 831d8a8..92ff800 100644 --- a/Aamukampa.Web/Program.fs +++ b/Aamukampa.Web/Program.fs @@ -2,7 +2,7 @@ open Microsoft.AspNetCore.Builder open Microsoft.Extensions.Hosting open Falco open Falco.Routing -open TJLaskuri.Web.Modules +open Aamukampa.Web.Modules let endpoints = [ get "/" Index.get |
