Rhombus: Which way we should import packages

Rhombus: Which way should we import packages like SXML?

I was trying so


import:
  lib("sxml/sxml.rkt") as sxml

and fail, - no such file or directory ' ~/.local/share/racket/8.17/pkgs/sxml/sxml/sxml.rkt'

A single-element Racket module name, such as sxml, implicitly refers to the main.rkt library, so sxml is really lib("sxml/main.rkt").

Thank You! It works!