diff options
| author | Ben Sima <ben@bsima.me> | 2025-11-20 18:20:09 -0500 |
|---|---|---|
| committer | Ben Sima <ben@bsima.me> | 2025-11-20 18:20:09 -0500 |
| commit | 0d8ba7ec8b7b06a490eb7f2d625e169b2ed0ad72 (patch) | |
| tree | eb2ea848291b3f8a706291a2b429a90a1f3a8997 /debug_ns.hs | |
| parent | cb37c2632cf945c1993d8b338abb1ce35899d5de (diff) | |
feat: implement t-PpYZt2
Diffstat (limited to 'debug_ns.hs')
| -rw-r--r-- | debug_ns.hs | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/debug_ns.hs b/debug_ns.hs new file mode 100644 index 0000000..fbd4ea3 --- /dev/null +++ b/debug_ns.hs @@ -0,0 +1,17 @@ +{-# LANGUAGE OverloadedStrings #-} +{-# LANGUAGE NoImplicitPrelude #-} + +module Main where + +import Omni.Namespace +import Protolude +import qualified Data.Text as T + +main :: IO () +main = do + let root = "/home/ben/omni-worker-1" + let path = "/home/ben/omni-worker-1/Omni/Task.hs" + putStrLn $ "Root: " ++ root + putStrLn $ "Path: " ++ path + let res = fromPath root path + print res |
