Skip to content

Commit

Permalink
v1.0.0 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
YetAnotherClown committed Apr 23, 2023
1 parent aef3ea7 commit 3e8b74f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/init.lua
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
--!strict

--[[
Future 1.0.0-beta1
Future 1.0.0
A Minimal, Typed Future Implementation inspired by the concept of Futures from the Rust Ecosystem.
https://clownxz.github.io/Luau-Future/
]]

local Packages = script.Parent
local Package = script.Parent

local Output = require(script.Output)
type Output<T, E> = Output.Output<T, E>

local ThreadPool = require(Packages.ThreadPool)
local ThreadPool = require(Package.ThreadPool)
type ThreadPool = ThreadPool.ThreadPool

local threadPool = ThreadPool.new()
Expand Down

0 comments on commit 3e8b74f

Please sign in to comment.