Skip to content

Commit

Permalink
♻️ Rename Kernel to Host for better clarity
Browse files Browse the repository at this point in the history
  • Loading branch information
Hona committed Mar 14, 2024
1 parent b26e054 commit 23a92be
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,9 @@ graph TD;
B[Feature B]
end
Slices --> |depends on| Common
Kernel --> |depends on| Common
Kernel --> |depends on| Slices
ASPNETCore[ASP.NET Core] --> |uses| Kernel
Host --> |depends on| Common
Host --> |depends on| Slices
ASPNETCore[ASP.NET Core] --> |uses| Host
end
Common[Common]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System.Reflection;

namespace VerticalSliceArchitectureTemplate.Kernel;
namespace VerticalSliceArchitectureTemplate.Host;

public static class EndpointDiscovery
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System.ComponentModel.DataAnnotations;
using Microsoft.AspNetCore.Diagnostics;

namespace VerticalSliceArchitectureTemplate.Kernel;
namespace VerticalSliceArchitectureTemplate.Host;

public static class ExceptionHandler
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System.Reflection;

namespace VerticalSliceArchitectureTemplate.Kernel;
namespace VerticalSliceArchitectureTemplate.Host;

public static class ModuleDiscovery
{
Expand Down
2 changes: 1 addition & 1 deletion src/VerticalSliceArchitectureTemplate/Program.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using System.Reflection;
using VerticalSliceArchitectureTemplate.Kernel;
using VerticalSliceArchitectureTemplate.Host;

var appAssembly = Assembly.GetExecutingAssembly();
var builder = WebApplication.CreateBuilder(args);
Expand Down

0 comments on commit 23a92be

Please sign in to comment.