lev2.go 317 B

123456789101112
  1. // package lev2 -- сборка уровня 2
  2. package lev2
  3. import "gitp78su.ipnodns.ru/svi/kern/v4/lev2/kern_ctx"
  4. // KernCtx -- контекст ядра.
  5. type KernCtx = kern_ctx.KernCtx
  6. // GetKernCtx -- возвращает контекст ядра.
  7. func GetKernCtx() *KernCtx {
  8. return kern_ctx.GetKernCtx()
  9. }