github.com/grafana/tanka@v0.26.1-0.20240506093700-c22cfc35c21a/pkg/jsonnet/testdata/findImporters/environments/relative-import/main.jsonnet (about)

     1  {
     2    // jsonnet supports going one level lower than files really are
     3    first: import '../relative-imported/main.jsonnet',
     4    second: import '../../relative-imported2/main.jsonnet',
     5  
     6    externalFile: importstr '../../other-files/test.txt',
     7    externalFile2: importstr '../../../other-files/test2.txt',
     8  }