blob: f8de975b4b9d4eb94de25f7e4f74dc7e976ca6c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
from __future__ import annotations
from ..via_template import ViaTemplateActivator
class PowerShellActivator(ViaTemplateActivator):
def templates(self):
yield "activate.ps1"
__all__ = [
"PowerShellActivator",
]
|