Init.ps1
# Copyright (c) Microsoft Corporation. # Licensed under the MIT License. <# .SYNOPSIS Initializes state for the module on load. .DESCRIPTION This script file initializes state for the Documentarian.ModuleAuthor module to make it easier to work with the module's classes, configuration, and enums. It runs in the caller's session state when the module is loaded to obviate the need to remember to call the `using` statement on the module and ensures the public classes and enums are available. #> using module .\Documentarian.ModuleAuthor.psm1 |