/source/app/NOS.Registration/DefaultFileWriter.cs
http://github.com/agross/netopenspace · C# · 14 lines · 12 code · 2 blank · 0 comment · 0 complexity · a22872d348ba88f96459d34b6b3c2cbe MD5 · raw file
- using ScrewTurn.Wiki;
-
- namespace NOS.Registration
- {
- internal class DefaultFileWriter : IFileWriter
- {
- public void Write(string path, string content)
- {
- var provider = Collectors.SettingsProvider;
-
- provider.SetPluginConfiguration(path, content);
- }
- }
- }