summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/collections/collection_root_user/ansible_collections/testns/testcoll/plugins/module_utils/AnotherCSMU.cs
blob: 68d2bc7a6ac8b6e9bd6d04c64fa5f9092a9758e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
using System;

namespace ansible_collections.testns.testcoll.plugins.module_utils.AnotherCSMU
{
    public class AnotherThing
    {
        public static string CallMe()
        {
            return "Hello from nested user-collection-hosted AnotherCSMU";
        }
    }
}