camshark: server: Use List and Dict annotations from typing module
Currently used list[...] and dict[...] annotations require Python 3.9 or greater. Replace them with List and Dict from typing module so that the server can run on devices with Python 3.7 or greater (tested on Python 3.7.8).
Signed-off-by: Mikhail Rudenko mike.rudenko@gmail.com