aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Structure/Modules/Start.php
blob: afb583b78fa194f746056d37da08ea48e250568d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php

declare(strict_types=1);

namespace Nsfisis\Waddiwasi\Structure\Modules;

use Nsfisis\Waddiwasi\Structure\Types\FuncIdx;

final readonly class Start
{
    public function __construct(
        public FuncIdx $func,
    ) {
    }
}