This project was sleeping for too long. Too many parts are not clean at all. So, here some cleanup: - add more test unit - clean msdos date/time format for zip - add crc32 - add version support - rewrite notes - rewrite the whole interface from scratch. - update github actions - update license (MIT) - create dotzip application - update notes regarding data-structure used - fix date and time ms-dos format (issue with endianess) - fix local file header encoding - update documentation - update with new extra fields and third party support - add extended timestamp third party support - add unix info new third party support
9 lines
159 B
Elixir
9 lines
159 B
Elixir
defmodule DotzipApp do
|
|
use Application
|
|
|
|
def start(_type, _args) do
|
|
children = []
|
|
Supervisor.start_link(children, strategy: :one_for_one)
|
|
end
|
|
end
|