// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 using System.Threading.Tasks; namespace AWS.Deploy.DocGenerator.Generators { /// /// Interface for documentation generators such as /// public interface IDocGenerator { /// /// Generates documentation content into the documentation folder of the repository. /// public Task Generate(); } }