Source code for scitex_path._symlink

#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# Timestamp: "2025-09-16 15:11:33 (ywatanabe)"
# File: scitex-path/src/scitex_path/_symlink.py
# ----------------------------------------
from __future__ import annotations

import os

__FILE__ = __file__
__DIR__ = os.path.dirname(__FILE__)
# ----------------------------------------

"""Symlink creation and management utilities."""

import logging
from pathlib import Path
from typing import Optional, Union

logger = logging.getLogger(__name__)


































# EOF