Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@

namespace MapperAI.Core.Clients;

public class MapperMapperClientFactory : IMapperClientFactory
public class MapperClientFactory : IMapperClientFactory
{
private readonly IMapperSerializer _serializer;

public MapperMapperClientFactory(IMapperSerializer serializer)
public MapperClientFactory(IMapperSerializer serializer)
{
_serializer = serializer;
}
Expand Down
2 changes: 1 addition & 1 deletion src/MapperAI.Core/MapperAI.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<Title>MapperAI-Alpha</Title>
<Authors>Dridev</Authors>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>0.1.0-alpha</Version>
<Version>0.1.1-alpha</Version>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryUrl>https://github.com/01Dri/MapperAI</RepositoryUrl>
<RootNamespace>MapperAI.Core</RootNamespace>
Expand Down
2 changes: 1 addition & 1 deletion test/MapperAI.Test/BaseTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ public abstract class BaseTests
public BaseTests()
{
Serializer = new MapperSerializer();
Factory = new MapperMapperClientFactory(Serializer);
Factory = new MapperClientFactory(Serializer);
}
}
Loading