aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Stålnacke <joel@saker.fi>2025-08-03 16:05:19 +0300
committerJoel Stålnacke <joel@saker.fi>2025-08-03 16:05:19 +0300
commit83eb12a3f0f4a6764977ccbd9942f807cc7b2673 (patch)
tree7428d001c67a6a9996e64cd578bb15f678969ab8
parent774fcf3c38c59d6dd2788262178dffc234ae61db (diff)
Rename TJLaskuri --> Aamukampa
-rw-r--r--Aamukampa.Core/Library.fs2
-rw-r--r--Aamukampa.Core/Types.fs2
-rw-r--r--Aamukampa.Frontend/App.fs4
-rw-r--r--Aamukampa.Web/Modules/Index.fs6
-rw-r--r--Aamukampa.Web/Program.fs2
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